How can I get the tree form these pre/in order traversal:
Pre: A,B,D,E,C,F,G,H in:E,D,B,A,G,F,H,C
EDITED: MY Answer
A
/ \
B C
/ \
D F
/ / \
E G H
|
How can I get the tree form these pre/in order traversal: Pre: A,B,D,E,C,F,G,H in:E,D,B,A,G,F,H,C EDITED: MY Answer
|
|||||||||||
|
|
EDIT: Correction, You don't have the correct answer, FGH is to the left of C. To verify just run the two algorithms against it:
You know that A is the root because it starts the pre-order. Use the in-order to arrange nodes to the left and right of A. B is the second node (pre-order), and left of A (in-order), and so on. You know that F,G,H is left of C because of the in-order arrangement. Basically, use preorder to select the next node, and in-order to see whether it is left or right of the parent node. EDIT (18 Apr 2011): To show how mechanical the process is I offer this pseudo code:
The trick is to use the in-order sequence to determine whether a node is added to the left or right of its parent, for example:
I'm passing a lamba, but any equivalent method for passing a comparer should do. |
||||
|
|
|
If you really want to do your homework and learn something have a look at: http://en.wikipedia.org/wiki/Tree_traversal It's great article, about pre, in, post order tree transversal. |
|||
|
|
|
Below is a working implementation in C#
Here is one possible implementation of
|
|||
|
|