Tree Data Structure Using binary search tree create a java code that does the following: Create a menu that contains the
Posted: Sat Nov 27, 2021 10:39 am
Tree Data Structure Using binary search tree create a java code that does the following: Create a menu that contains the following operations: 1. Add a node 2. Delete a node 3. Show minimum node 4. Show maximum node 5. Find a node 6. Print all nodes 7. Exit Important notes: 1. Write the operations by yourself. Don't use the existing library in Java. 2. The user should insert all data even the first elements 3. The menu should be repeated until the user press Exit