Binary Tree
Table of Contents
- Introduction to binary trees
- Array implementation of binary trees
- Linked list implementation of binary trees
- Recursive traversals in binary trees
- Iterative traversals in binary trees
- Constructing a binary tree
- Insertion in binary trees
- Pattern: Preorder traversal (Stateless)
- Pattern: Preorder traversal (Stateful)
- Pattern: Postorder traversal (Stateless)
- Pattern: Postorder traversal (Stateful)
- Pattern: Root to leaf path (Stateless)
- Pattern: Root to leaf path (Stateful)
- Pattern: Level order traversal
- Pattern: Level order traversal (Columns)
- Pattern: Lowest common ancestor
- Pattern: Simultaneous traversal
- Practice: Mix traversals