Skip to content

Instantly share code, notes, and snippets.

View ayeshnipun's full-sized avatar
☠️
Beware

Ayesh Nipun ayeshnipun

☠️
Beware
View GitHub Profile
anonymous
anonymous / Binary Search Tree.py
Created October 8, 2017 16:47
Binary Search Tree created by __Bucky__ - https://repl.it/MMCT/15
class node:
def __init__(self, d, l=None, r=None, p=None):
self.data = d
self.left = l
self.right = r
self.parent = p
def getData(self):
return self.data