Binary Tree
Terminology
class Node:
def __init__(self, data):
self.data = data
self.left = None
self.right = NoneProperties of Binary Tree
Types of Binary Tree
Operations in Binary Tree
Traversing a Tree
Depth First Traversal



Breadth First Traversal
Implementation of Binary Tree
Practice Binary Tree
Advantages of Binary Tree:
Use Cases of Binary Tree
References for Further Reading
Last updated