1. Write a program to perform the following operations: (a) Insert an element into a binary search tree. (b) Delete an e
Posted: Fri Jul 01, 2022 6:57 am
1. Write a program to perform the following operations: (a) Insert an element into a binary search tree. (b) Delete an element from a binary search tree. (c) Search for a key element in a binary search tree. 2.Write a programs that use recursive functions to traverse the given binary tree in (a)Preorder (b) Inorder and (c) Postorder. 3.Write a program to count the number of nodes in the binary search tree. 4. write a program for creating and traversing the binary search tree.