Following are the B inary S earch T rees (BSTs) with values inserted in the left to right order (i-e From the first to the last one):
Tree 1 49 31 25 52 77 36 91
Tree 2 31 25 49 52 77 91 36
Tree 3 31 49 25 36 52 77 91
Which tree when printed using In-order Traversing Technique gives the sequence below ?
25 31 36 49 52 77 91
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The In-order Traversing Technique is used to print a BST ( B inary S earch T ree) in Ascending order . Hence all the three trees, when printed, give 25 31 36 49 52 77 91