David J Nevin
Posts with the tag Binary Tree:
Level Order Traversal Binary Tree
Definition Level Order traversal is a breath first transversal. The traversal starts at the root and explores all the nodes at the same depth prior to moving onto the next depth level.
Depth Order Traversals: Binary Tree
Tree Traversals (Preorder, Inorder and Postorder) From the root of a binary tree, traverse deeper before going laterally.