This is for C++ 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.  7 Searching Benchmarks (integer array search) Modify the textbook instructions as follows: Use the output of one of the array sorting algorithms from exercise 8.  Search the resulting sorted array using both the Sequential search and Binary search.  Count and display the number of comparisons in both cases.  Use a loop to allow multiple selections without having to restart the program.    Original order: 26 45 56 12 78 74 39 22 5 90 87 32 28 11 93 62 79 53 22 51 Bubble Sorted: 5 11 12 22 22 26 28 32 39 45 51 53 56 62 74 78 79 87 90 93 Number of location swaps: 89 Select a number in the Array to search for: 45 Sequential Search comparisons: 10 The position of the number is 10 Binary Search comparisons: 1 The position of the number is 10 Do you want to search again? (Y=Yes) y Select a number in the Array to search for: 74 Sequential Search comparisons: 15 The position of the number is 15 Binary Search comparisons: 2 The position of the number is 15 Do you want to search again? (Y=Yes) n

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

This is for C++

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. 

  • 7 Searching Benchmarks (integer array search)

Modify the textbook instructions as follows:

Use the output of one of the array sorting algorithms from exercise 8.  Search the resulting sorted array using both the Sequential search and Binary search.  Count and display the number of comparisons in both cases.  Use a loop to allow multiple selections without having to restart the program. 

 

Original order:
26 45 56 12 78 74 39 22 5 90 87 32 28 11 93 62 79 53 22 51
Bubble Sorted:
5 11 12 22 22 26 28 32 39 45 51 53 56 62 74 78 79 87 90 93
Number of location swaps: 89
Select a number in the Array to search for: 45
Sequential Search comparisons: 10
The position of the number is 10
Binary Search comparisons: 1
The position of the number is 10
Do you want to search again? (Y=Yes) y
Select a number in the Array to search for: 74
Sequential Search comparisons: 15
The position of the number is 15
Binary Search comparisons: 2
The position of the number is 15
Do you want to search again? (Y=Yes) n

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education