Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Linear search: Prompt users to input 10 integers and store in a vector (or array). Then prompt users to input an integer to search for
Linear search: Prompt users to input 10 integers and store in a vector (or array). Then prompt users to input an integer to search for in the vector. (a) Write a function that performs linear search. The function takes two arguments: YourVector and YourNumber. Return the index if YourNumber is in YourVector; otherwise return -1. (b) Write a function that find the maximum of a vector. Return the maximum and its index.
1. (60pts) Linear search: Prompt users to input 10 integers and store in a vector (or array). Then prompt users to input an integer to search for in the vector. (a) Write a function that performs linear search. The function takes two arguments: YourVector and YourNumber. Return the index if YourNumber is in YourVector; otherwise return -1 (b) Write a function that find the maximum of a vector. Return the maximum and its index. 2. (40pts) Binary search: Prompt users to input 10 integers and store in a vector (or array). Then prompt users to input an integer to search for in the vector. Write a function that performs binary search. The function takes two arguments as Problem 1(a)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started