Part 1 of 4 The following series of questions will have you…
Part 1 of 4 The following series of questions will have you write a class named NumberSearcher that reads sorted GTIDs from an input file, performs a binary search to find the index of GTID=555555555, and prints the found index to an output file. This class must contain the three methods detailed in the successive questions. Refer back to this question for the example file input and output below. For this part of the question, write the class header ONLY. You MUST also include any necessary imports before the class header (HINT: there are four). DO NOT write the method headers or definitions as part of this question. You will write those in different questions to minimize scrolling. Example file input and output: Line # Input File Output File 1 6 4 2 111111111 3 222222222 4 333333333 5 444444444 6 555555555 7 666666666
Read Details