Skip to content

Instantly share code, notes, and snippets.

View yashshah1's full-sized avatar
🤓

Yash Shah yashshah1

🤓
View GitHub Profile
@yashshah1
yashshah1 / avl_tree.py
Last active October 6, 2021 14:29
AVL Tree, py
class Node():
def __init__(self, d = 0):
self.key = d
self.height = 1
self.left = None
self.right = None
def height(node):
if node is None:
return 0
return node.height