1.

Inorderpreorderpostorder​

Answer»

ong>Explanation:  if helpful please mark me brainliest                                  Uses of Inorder

In CASE of binary search trees (BST), Inorder traversal GIVES nodes in non-decreasing order. To get nodes of BST in non-increasing order, a variation of Inorder traversal where Inorder traversal s reversed can be used.             Uses of Preorder

Preorder traversal is used to create a copy of the tree. Preorder traversal is ALSO used to get prefix expression on of an expression tree.

Uses of Postorder

Postorder traversal is used to delete the tree. Please see the question for deletion of tree for details. Postorder traversal is also USEFUL to get the POSTFIX expression of an expression tree.



Discussion

No Comment Found