1
22kviews
Define traversal of binary tree. Explain different types of traversals of binary tree with examples.
1 Answer
4
1.5kviews

To traverse a binary tree means to visit each node of the tree exactly once in a systematic fashion. 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. We mainly have three algorithms for …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.