Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

CSC 1 1 1 Computer Programming Programming ssignment: Searching an Array In this assignment, you will write a well formatted C + + program that

CSC111 Computer Programming
Programming ssignment: Searching an Array
In this assignment, you will write a well formatted C++ program that searches two arrays.
Download and save the two files attached to this assignment. One is a sorted
collection of 200 integers and the other an unsorted collection of 200 integers.
The program should do the following:
Read each file an initial arrays named sorted_array and unsorted_array.
A function with the prototype
bool linear_search(int array[], int size, int search_value)
that performs a linear search of the array and returns true if the value is found.
A function with the prototype
bool binary_search(int array[], int size, int search_value)
that performs a binary search of the array and returns true if the value is found.
The main function should query the user to enter a value to search for and display the
following messages:
You entered xxxxxx.
The value was [not] found in the sorted array
The value was [not] found in the unsorted array
Notes
Where xxxxxx is the value provided by the user.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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