Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Q2. Write a Java program that has two classes, as follows: Class: HW5_a2_Y You will do the following in the main method of this class:
Q2. Write a Java program that has two classes, as follows: Class: HW5_a2_Y You will do the following in the main method of this class: Open a given txt file (you may hard code the filename) containing n names, and read and store these names into a String array - Ask user to enter a name to search in the array -Create an object of SortAndSearch class (described below) and use the sort and search methods on this object. The search method returns true if the name exits in the list, else returns false, Print The given nameexists if the name is found, else The given name is not found", if the name doesn't exist in the list Class: SortAndSearch, with the following properties: -one instance field, i.e. Sring array - method 1 (for sorting accepts the Suing array of as its argument, sorts it (using Selection -method 2 (for searching) accepts two arguments: the sorted array and a specific name to -constructor that sets the String array field with the input String aray sort algorithm), and returms the sorted array; search in this array (using Binary search algorithm), and retuns ue if the given name exists, otherwise retumsfalte. Sample output is as below. If the .txt file contains the following names (show the working of your program with at least 10 names in the txt file): ohn Mary Ravi Madeeha Mark Abdul Ram And the user enters the following name to search: Enter the name to search: Mark The sorted aray will be as follows Abdul ohn Madeeha Mark Mary Pradeep Ram Ravi After the search is performed, the program will print: The siven name "Mark exists
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started