InterviewSolution
Saved Bookmarks
| 1. |
Explain about Inorder, Preorder and Postorder traversals? |
|
Answer» Unlike linear data structures (ARRAY, Linked List, Queues, STACKS, etc) which have only one logical WAY to traverse them, trees can be TRAVERSED in different ways. Following are the generally used ways for traversing trees. |
|