Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The program generates a sorted list of numbers and calls the binary search function to check if a given value appears in the list Your

The program generates a sorted list of numbers and calls the binary search function to check if a given value appears in the list

Your task is to implement the binary search algorithm in the BinSearch.h file, so that the program produces the expected output. If the number we are looking for appears in the list, then return the position in the list where you found it. If it does not, then return -1.

to test code some expected inputs : 27; should output 26, -1, -1

FASTSEARCHING.CPP FILE:

#include #include "BinSearch.h"

using namespace std;

int main() { long size; cin >> size; long* numbers = new long[size];

// This list is sorted for (long i = 0; i < size; i++) { numbers[i] = i; } cout << binSearch(numbers, size, size-1) << endl; cout << binSearch(numbers, size, size+5) << endl; cout << binSearch(numbers, size, -17) << endl; return 0; }

Binsearch.h file here :

#ifndef BinSearch_h #define BinSearch_h

long binSearch(long* list, long n, long val){ // Provide your code here }

#endif

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

Successful Keyword Searching Initiating Research On Popular Topics Using Electronic Databases

Authors: Randall MacDonald, Susan MacDonald

1st Edition

0313306761, 978-0313306761

Students also viewed these Databases questions

Question

Analyze the impact of labor unions on health care.

Answered: 1 week ago

Question

Assess three motivational theories as they apply to health care.

Answered: 1 week ago

Question

Discuss the history of U.S. labor unions.

Answered: 1 week ago