LAB 8.2 Working with the Binar y SearchBring in program binary_search.cpp from the Lab 8 folder. This is SampleProgram 8.2 from the Pre-lab Reading Assignment. The code is the following: #include <iostream> using namespace std;   int binarySearch(int[], int, int); // function prototype  const int SIZE = 16;   int main() { int found, value;   int array[] = { 34, 19, 19, 18, 17, 13, 12, 12, 12, 11, 9, 5, 3, 2, 2, 0 }; // array to be searched   cout << "Enter an integer to search for:" << endl; cin >> value;   found = binarySearch(array, SIZE, value); // function call to perform the binary search // on array looking for an occurrence of value    if (found == -1) cout << "The value " << value << " is not in the list" << endl; else cout << "The value " << value << " is in position number "     << found + 1 << " of the list" << endl;   return 0; }   //******************************************************************* // binarySearch // //  task:       This searches an array for a particular value //  data in:   List of values in an orderd array, the number of //               elements in the array, and the value searched for //               in the array //  data returned: Position in the array of the value or -1 if value //               not found // //*******************************************************************   int binarySearch(int array[], int numElems, int value) // function heading { int first = 0; // First element of list int last = numElems - 1; // last element of the list int middle; // variable containing the current // middle value of the list   while (first <= last) { middle = first + (last - first) / 2;   if (array[middle] == value) return middle; // if value is in the middle, we are done   else if (array[middle]<value) last = middle - 1;// toss out the second remaining half of   else first = middle + 1;// toss out the first remaining half of // the array and search the second }   return -1; // indicates that value is not in the array } Exercise 1: The variable middle is defined as an integer. The program containsthe assignment statement middle=first+(last-first)/2. Is the right sideof this statement necessarily an integer in computer memory? Explain howthe middle value is determined by the computer. How does this line ofcode affect the logic of the program? Remember that first, last, andmiddle refer to the array positions, not the values stored in those arraypositions.Exercise 2: Search the array in the program above for 19 and then 12. Recordwhat the output is in each case.Note that both 19 and 12 are repeated in the array. Which occurrence of19 did the search find?Which occurrence of 12 did the search find?Explain the difference.Exercise 3: Modify the program to search an array that is in ascending order.Make sure to alter the array initialization.

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

LAB 8.2 Working with the Binar y Search
Bring in program binary_search.cpp from the Lab 8 folder. This is Sample
Program 8.2 from the Pre-lab Reading Assignment. The code is the following:

#include <iostream>

using namespace std;

 

int binarySearch(int[], int, int); // function prototype 

const int SIZE = 16;

 

int main()

{

int found, value;

 

int array[] = { 34, 19, 19, 18, 17, 13, 12, 12, 12, 11, 9, 5, 3, 2, 2, 0 };

// array to be searched

 

cout << "Enter an integer to search for:" << endl;

cin >> value;

 

found = binarySearch(array, SIZE, value);

// function call to perform the binary search

// on array looking for an occurrence of value 

 

if (found == -1)

cout << "The value " << value << " is not in the list" << endl;

else

cout << "The value " << value << " is in position number "

    << found + 1 << " of the list" << endl;

 

return 0;

}

 

//*******************************************************************

// binarySearch

//

//  task:       This searches an array for a particular value

//  data in:   List of values in an orderd array, the number of

//               elements in the array, and the value searched for

//               in the array

//  data returned: Position in the array of the value or -1 if value

//               not found

//

//*******************************************************************

 

int binarySearch(int array[], int numElems, int value) // function heading

{

int first = 0; // First element of list

int last = numElems - 1; // last element of the list

int middle; // variable containing the current

// middle value of the list

 

while (first <= last)

{

middle = first + (last - first) / 2;

 

if (array[middle] == value)

return middle; // if value is in the middle, we are done

 

else if (array[middle]<value)

last = middle - 1;// toss out the second remaining half of

 

else

first = middle + 1;// toss out the first remaining half of

// the array and search the second

}

 

return -1; // indicates that value is not in the array

}

Exercise 1: The variable middle is defined as an integer. The program contains
the assignment statement middle=first+(last-first)/2. Is the right side
of this statement necessarily an integer in computer memory? Explain how
the middle value is determined by the computer. How does this line of
code affect the logic of the program? Remember that first, last, and
middle refer to the array positions, not the values stored in those array
positions.
Exercise 2: Search the array in the program above for 19 and then 12. Record
what the output is in each case.
Note that both 19 and 12 are repeated in the array. Which occurrence of
19 did the search find?
Which occurrence of 12 did the search find?
Explain the difference.
Exercise 3: Modify the program to search an array that is in ascending order.
Make sure to alter the array initialization.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 1 steps

Blurred answer
Knowledge Booster
Merge Sort
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
  • SEE MORE 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