Skip to content

Instantly share code, notes, and snippets.

View abhishekti7's full-sized avatar

Abhishek Tiwari abhishekti7

View GitHub Profile
@abhishekti7
abhishekti7 / tree.py
Created September 21, 2023 04:26
All Binary Tree Operations
# Node of the tree
class Node:
def __init__(self, data):
self.left = None
self.right = None
self.value = data
# Tree Class
class Tree:
def __init__(self, value):