How will inorder, preorder and postorder traversals print
the elements of a tree?
Answer Posted / sankar
in order:LOR
pre order:OLR
post order:LRO
L=LEFT CHILD
R=RIGHT CHILD
O=ROOT NODE
| Is This Answer Correct ? | 15 Yes | 6 No |
Post New Answer View All Answers
What is data type explain?
Why is hashing used?
Why do we need searching algorithms?
List the basic operations carried out in a linked list?
Is boolean a data type?
Differentiate linear from non linear data structure?
List out the basic operations that can be performed on a stack?
What is the need for path compression?
How many sorting algorithms are there?
Can array store heterogeneous data?
Differentiate between iterator and listiterator.
Is array size dynamic or fixed?
List the data structures which are used in hierarchical data model.
Is heap sort stable?
What is bubble sort and quick sort?