Skip to content

Instantly share code, notes, and snippets.

View devhektor's full-sized avatar
🏠
Working from home

Héctor René devhektor

🏠
Working from home
View GitHub Profile
@codigosdeprogra
codigosdeprogra / arbol.py
Created March 31, 2017 06:05
Arbol binario de busqueda en Python 3
#Autor: Luis García
#Carrera: Ingeniería en Computación
import os
class node():
def __init__(self, dato):
self.left = None
self.right = None
self.dato = dato