When we perform in order traversal on a binary tree, we get the ascending order array. The tree is:

When we perform in order traversal on a binary tree, we get the ascending order array. The tree is: Correct Answer Binary search tree

Opttion 3: correct:

When we perform in order traversal on a binary tree, we get the ascending order array. The tree is binary search tree

Random binary search tree

[ alt="5faad4d3b638c5df89d4ecdb 26 Nov 2020 Shashi D1" src="//storage.googleapis.com/tb-img/production/20/11/5faad4d3b638c5df89d4ecdb_26_Nov_2020_Shashi_D1.PNG" style="width: 136px; height: 172px;">

Post-order traversal is 23, 18, 27, 25, 10, 60, 80, 70, 30.

In-order traversal traversal is 10, 18, 23, 25, 27, 30, 60, 70, 80

Preorder traversal is 30, 10, 25, 18, 23, 27, 70, 60 ,80 

In order traversal, of the binary search tree is in ascending order.

Related Questions

A teacher asked the class to subtract 5 from 75.70% of the class said: 25. Their work was shown as: \(\begin{array}{*{20}{c}} {\begin{array}{*{20}{c}} 7&5 \end{array}}\\ {\underline {\begin{array}{*{20}{c}}\ { - 5} \ \ \ &{} \end{array}} }\\ {\underline {\begin{array}{*{20}{c}} 2&5 \end{array}} } \end{array}\) Which of the following describes the most appropriate remedial action that the teacher should take to clarify this misconception?
The pre-order traversal of a binary search tree is 15, 10, 12, 11, 20, 18, 16, 19. Which one of the following is the post order traversal of the tree?
Postorder traversal of a given binary search tree T produces following sequence of keys: 3, 5, 7, 9, 4, 17, 16, 20, 18, 15, 14 Which one of the following sequences of keys can be the result of an in-order traversal of the tree T?
The preorder traversal sequence of a binary search tree is 25, 15, 10, 4, 12, 22, 18, 24, 50, 35, 31, 44, 70, 66, 90 Which one of the following is the postorder traversal sequence of the same tree?