Question: Perform using JAVA ! Write a program that performs the corresponding operations through the below menu, according to the selected option. 0. Exit 1. Add
Perform using JAVA !

Write a program that performs the corresponding operations through the below menu, according to the selected option. 0. Exit 1. Add student 2. Delete student 3. Find student 4. List all students 5. List distinct names 6. List name counts 7. About Enter your selection: You should ask until the user enters his selection correctly (between 0-7). When the user enters an option between 1-7, corresponding operation in the menu should be performed and the menu should be printed again after the operation ends. If the user enters 0, you should ask whether he/she really wants to exit the program. If he/she is sure, finish the program; otherwise, display the menu again. If the user enters an invalid option (not between 0-7), you should print a warning message and display the menu again. Each student should (at least) has the following properties: student id name surname To store students, you must implement your own list, binary search tree" and "hash" structures. (Instead of using pre-written Java API Class you should develop your own data structures). You should write your own code for data structures. You are allowed to use lab source codes that we examined so far; however it is preferable to write your own codes for your data structure. Your implementations should be efficient as possible
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
