- resetRunTimes() - Method in interface RuntimeInterface
-
This method is used to reset all 10 linear search times to zero.
- runBinarySearch(int[], int, int) - Method in interface DriverInterface
-
This method should create an instance of the BinarySearch.java class and
run the search for the specified target in the listOfNumbers
a total of numberOfTimes.
- runLinearSearch(int[], int, int) - Method in interface DriverInterface
-
This method should create an instance of the LinearSearch.java class and
run the search for the specified target in the listOfNumbers
a total of numberOfTimes.
- RuntimeInterface - Interface in <Unnamed>
-
This interface will be used to organize and manage runtimes that are measured for specific operations.