Question Bank Module-4
Question Bank Module-4
Question Bank Module-4
MODULE - 4: TREES
9. Explain iterative inorder traversal and level order traversal with C routines.
10. List and discuss the additional operations of binary tree with appropriate examples.
11. What is threaded binary tree? Write the rules to construct the threads.
12. Write the node structures and C declaration of threaded binary tree.
13. Explain inorder traversal and insertion of a node in a threaded binary tree.
14. Describe the binary search tree with an example. Write the iterative and recursive
function to search for a key value in a binary search tree
15. Construct a binary search tree for the inputs
i) 22, 14, 18, 50, 9, 15, 7, 6, 12, 32, 25
ii) 14, 5, 6, 2, 18, 20, 16, -1, 21
16. Explain and write the analysis of searching and inserting a node in BST.