C_Programs
C_Programs copied to clipboard
Added binary tree with multiple operations
The code is implemented using a switch statement which performs multiple operations which are: 1.INSERT IN BST 2.SEARCH KEY 3.PREORDER TRAVERSAL 4.INORDER TRAVERSAL 5.POSTORDER TRAVERSAL 6.HEIGHT AND DEPTH 7.NUMBER OF ELEMENTS IN THE TREE 8.MAXIMUM ELEMENTS 9.MINIMUM ELEMENTS 10.DELETE NODE
Added code for BST @Akanksha1212, please review.