Skip to content

Instantly share code, notes, and snippets.

View ivaneliascl's full-sized avatar

Ivan Elias Carrasco Lupinta ivaneliascl

View GitHub Profile
@ivaneliascl
ivaneliascl / .cpp
Last active February 28, 2016 19:27
ARBOLES ABB EN C++
#include <iostream>
#include <windows.h>
#include <cstdio>
using namespace std;
struct nodo{
char info;
struct nodo *izq;
struct nodo *der;
};
typedef struct nodo arbol;