Country Search App was a school project written in java. The program reads in a csv file called countries.csv. Its sorts all of the different values into their proper variables within an object called countries. The user is then prompted with a JOptionPane window, and asks which information the user would like to see. The user can search for 8 different options:
- Median Population of Planet (Uses bubble sort and Binary Search)
- Median Population of A Specific Continent (Uses bubble sort and Binary Search)
- Median Land Size of Earth (Uses bubble sort and Binary Search)
- Median Land Size of Specific Continent (Uses bubble sort and Binary Search)
- All Info of A Country Search By Name (Uses Linear Search)
- All Info of A Country Search By Array ID (Direct Address Method)
- All Countries Info Search By Country Code (Binary Search);
- All Countries Info Within A Specified Continent (Linear Search)
- Quit the Application
The results are then displayed in the console window. Each search is seperated by 20 "*".