Skip to content

Instantly share code, notes, and snippets.

View Frikster's full-sized avatar
😵
It was a typo again!

Dirk Haupt Frikster

😵
It was a typo again!
View GitHub Profile
@Frikster
Frikster / binarySearchTree.py
Created November 15, 2017 01:02 — forked from jakemmarsh/binarySearchTree.py
a simple implementation of a Binary Search Tree in Python
class Node:
def __init__(self, val):
self.val = val
self.leftChild = None
self.rightChild = None
def get(self):
return self.val
def set(self, val):