Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ PROGRAM )Chapter 9: 7. Binary String Search Modify the binarySearch function presented in this chapter so it searches an array of strings instead of

C++ PROGRAM )Chapter 9: 7.

Binary String Search Modify the binarySearch function presented in this chapter so it searches an array of strings instead of an array of ints. Test the function with a driver program. Use Program 9-9 as a skeleton to complete. (The array must be sorted before the binary search will work.)

_______________________________________________________________

this is program 9-9

//include needed header files here.

int main()

{

const int SIZE = 20;

string name[SIZE] =

{"Collins, Bill", "Smith, Bart", "Michalski, Joe", "Griffin, Jim",

"Sanchez, Manny", "Rubin, Sarah", "Taylor, Tyrone", "Johnson, Jill",

"Allison, Jeff", "Moreno, Juan", "Wolfe, Bill", "Whitman, Jean",

"Moretti, Bella", "Wu, Hong", "Patel, Renee", "Harrison, Rose",

"Smith, Cathy", "Conroy, Pat", "Kelly, Sean", "Holland, Beth"};

// Insert your code to complete this program.

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions