Question
Overview In this assignment you will be implementing and testing both the Linear Search and Binary Search algorithms .. You will also be writing a
Overview In this assignment you will be implementing and testing both the Linear Search and Binary Search algorithms .. You will also be writing a driver to test the search algorithms and you will be measuring the run times of each search. Details
1. TestTimes Class You will write the TestTimes.java class which will implement the TestTimesInterface. The interface may be downloaded from TestTimesInterface.java The TestTimes class will contain an array of 10 long values and a counter of how many values have been added using addTestTime (long testTime). Every time a new test time is added, the counter is incremented.
2. Linear Search Class You will write the LinearSearch.java class which will inherit from TestTimes.java and implement the Search Interface using a lincar search algorithm. The interface may be downloaded from Searchinterface.java Please note that your search method must measure the run time and add it to the TestTimes class by using the addTestTime() method.
3. Binary Search Class You will write the BinarySearch.java class which will inherit from TestTimes.java and implement the Search Interface using a binary search algorithm. The interface may be downloaded from SearchInterface.java Please note that your search method must measure the run time and add it to the TestTimes class by using the addTestTime() method.
4. Driver Class You will write the driver.java class to test your implementations of TestTimes.java 2 LinearSearch.java BinarySearch.java The Driver.java will implement the Driver Interface. The interface may be downloaded from Driver Interface.java Please note that, in addition to implementing the Driver Interface, you are also required to write your own public static main(String[] args) method in Driver.java that tests all of your classes and methods before submitting your assignment on mimir.
PLEASE BE CLEAR DO NOT PUT THEM TOGETHER EACH CODE MUST BE SEPARATE EXCEPT DRIVER CLASS THANK
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