Skip to content

Instantly share code, notes, and snippets.

View willamesoares's full-sized avatar

Will Soares willamesoares

View GitHub Profile
@willamesoares
willamesoares / BSTNode.py
Last active November 22, 2015 17:05 — forked from stummjr/BSTNode.py
BSTNode.py - Binary Search Tree
# -*- encoding:utf-8 -*-
#from __future__ import print_function
class BSTNode(object):
def __init__(self, key, value=None, left=None, right=None):
self.key = key
self.value = value
self.left = left
self.right = right