Question: Implement the binary search-based (n) algorithm to determine the local minimum in an 'n' x 'n' two-dimensional array and compare its run-time performance with that

Implement the binary search-based (n) algorithm to determine the local minimum in an 'n' x 'n' two-dimensional array and compare its run-time performance with that of a brute force (n2 ) algorithm that searches for the local minimum element by element until one is found. Note that both the binary search and the brute force search algorithms should stop once a local minimum is found. You should create random two-dimensional arrays (with numRows = numCols) with unique elements in the range [1... numRows * numCols] for the following values of numRows (numCols) and determine the average execution time of the binary search and the brute force search algorithms by running 100 trials for each of the numRows (numCols) values. Determine the running times in nano seconds or milli seconds, as appropriate. numRows (numCols) values: 4, 6, 8, 10, 15, 20, 25, 30, 35, 40, 50, 75, 100, 150, 200, 250, 300, 350 Plot the results with numRows in X-axis and the average execution times of the binary search and the brute force search algorithms in the Y-axis.

Please do the programming in Java and be detailed (adding in comments to explain how your code works). Thank you!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!