Skip to content

Instantly share code, notes, and snippets.

View Twoody's full-sized avatar

Tanner Lee Woody Twoody

View GitHub Profile
@Twoody
Twoody / avl_tree.py
Created October 28, 2018 20:03 — forked from girish3/avl_tree.py
AVL tree implementation in python
#import random, math
outputdebug = False
def debug(msg):
if outputdebug:
print (msg)
class Node():
def __init__(self, key):