Welcome~~~


Another blog:
http://fun-st.blogspot.com/

It is easier to write an incorrect program than understand a correct one.

Thursday, March 31, 2011

Build binary search tree using post-order traversal trace. | Technically Idle

Build binary search tree using post-order traversal trace. | Technically Idle

In the post-order traversal trace, starting from the root node, moving towards the start, the first key which is greater than (or equal to) the root’s key is the right child of root. Similarly, the first key lower than the root’s key is the left child of root.

No comments:

Post a Comment