Question: Use C++ Write a program that has an array of the following 20 integer values: 101, 142, 147, 189, 199, 207, 222, 234, 289, 296,
Use C++
Write a program that has an array of the following 20 integer values: 101, 142, 147, 189, 199, 207, 222, 234, 289, 296, 310, 319, 388, 394, 417, 429, 447, 521, 536, 600. It should call a function that uses the linear search algorithm to locate 521 value. The function should keep a count of the number of comparisons it makes until it finds the value. The program then should call a function that uses the binary search algorithm to locate the same value. It should also keep count of the number of comparisons it makes. Display these values on the screen.
Thoughtfully comment your code.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
