CS Electrical And Electronics
@cselectricalandelectronics

Design, Develop and Implement a menu driven Program in C for the following operations on Binary Search Tree (BST) of Integers

All QuestionsCategory: Data StructureDesign, Develop and Implement a menu driven Program in C for the following operations on Binary Search Tree (BST) of Integers
Anonymous asked 2 years ago

a. Create a BST of N Integers: 6, 9, 5, 2, 8, 15, 24, 14, 7, 8, 5, 2
b. Traverse the BST in Inorder, Preorder, and Post Order
c. Search the BST for a given element (KEY) and report the appropriate message
d. Delete an element(ELEM) from BST
e. Exit