0 votes
in Other by

What is Tree Traversal?

1 Answer

0 votes
by

Tree traversal is a process of visiting all the nodes of a tree. All the nodes are connected via edges (links), where we always start from the root (head) of the node.

The three ways to traverse a tree:

  1. In-order Traversal
  2. Pre-order Traversal
  3. Post-order Traversal
...