Created: 2023-11-07 01:00
Status: #concept
Subject: Programming
Tags: Tree Binary Tree Depth-First Search Algorithm
Breadth-First Search
We visit each node, one-by-one, from each "level" starting form the root node.
Level-Order Traversal
Visit nodes level-by-level and left-to-right fashion at the same level.