In this assignment we will create, display, and search a Binary Search Tree of College objects. You are encouraged to reuse as much code as possible from previous assignments/labs.
The assignment consists of the following classes/files:
Your tasks:
Inorder:
ABC 98 AB College 9998
CC 10 Cuesta College 19135
CPC 99 Cupertino College 9999
// ... and so on
1). FC
..2). PCC
....3). SBCC
// ... and so on
ABC 98 AB College 9998
DAC 1 De Anza College 19302
IVC 9 Irvine Valley College 20577
// ... and so on
Search
=======
Enter a college code (or Q to stop searching) :
College "FHC" was not found in this list.
Accept lower and upper case letters. For instance, if the user enters dAc, the search result will show data for De Anza College instead of displaying the “not found” message.
Also, it is left for you to decide where the functions in charge of displaying the leaves of the tree should be placed.