Hide Index
Binary Tree
0% completed
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: Lowest common anscestor
Pattern: Simultaneous traversal
Practice: Mix traversals
Certificate
Understanding level order traversal
Level order traversal is a way of traversing a tree, where we traverse one level at a time. The nodes in the tree are traversed from top to bottom, from left to right.
Loading Image
Lever Order Traversal
Level order traversal follows the following order:
- Process level 0
- Process level 1
- ...
- ...
Liking the course? Check our discounted plans to continue learning.