Skip to content

Instantly share code, notes, and snippets.

@itjp
itjp / BSTNode.py
Last active August 29, 2015 14:13 — forked from stummjr/BSTNode.py
# -*- 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