Question
C4.1 Search Benchmarks: in C++ The purpose of this program is to search for a number using the linear and binary search algorithms and report
C4.1 Search Benchmarks: in C++
The purpose of this program is to search for a number using the linear and binary search algorithms and report back how many comparisons were done to find a number using both techniques in a sorted array.
Using the Searching and Sorting Source Code that I provided last week (posted on Moodle), modify the MAIN source code to prompt the user to enter a number in the range of 1 to 100 to search for. Then, the program should search an array of sorted numbers for the number using both the linearSearch and binarySearch functions.
For searching, the program should generate a sorted array of integers from 1 to 100 with 100 elements. You can create a new function called initArray2 (the one I provided in the source code is called initArray and can be used to help write initArray2) to initialize the parameter array as follows:
array [0] = 1
array [1] = 2
etc.
until array [99] = 100
Once the number is found in both the linearSearch and binarySearch functions, the functions should print out how many comparisons were done to find the number before returning to the calling function (main).
Input Validation: Do not accept a number to search for that is less than 1 or greater than 100.
Include several test runs of the program to show successful runs of your program, with both valid and invalid data (to show that you are checking for invalid data)
Please ensure the program is well designed and follows accepted style guidelines (e.g. variable naming, indentation, spacing).
Please ensure the program is well documented, including the overall purpose of the program and documenting all the major sections of the code.
NEW: Please ensure your output includes a line that identifies you. For example:
cout << Written by Warren Edwards, INFO 1112 S50 ;
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