0
7.8kviews
Explain different types of tree traversals technique with examples. Also write recursive function for each traversal technique
1 Answer
0
235views
  1. To traverse a binary tree means to visit each node of the tree exactly once in a systematic fashion.

  2. Binary tree is non-linear data structure. Hence, we can’t traverse it like a linked list is a sequential manner but it requires a different approach.

  3. We mainly have three algorithms for …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.