Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Design an application that has an array of at least 20 integers. It should call

ID: 3544341 • Letter: D

Question

Design an application that has an array of at least 20 integers. It should call a module that uses the sequential search algorithm to locate one of the values. The module should keep a count of the number of comparisons it makes until it finds the value. Then the program should call another module that uses the binary search algorithm to locate the same value. It should also keep a count of the number of comparisons it makes. Display these values on the screen. **I ONLY NEED THE FLOWCHART, NOT ANY TYPE OF CODE** Preferably done in Visio

Explanation / Answer

int arr[20];

int counts=0, countb=0;

//sequential search//

loop

{

counts++;

comparison;

}

//binary search//

loop

{

countb++;

comparison;

}

output: counts, countb;


Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote