Question: i. Write a program that Calls a method that performs sequential search. The method accepts two parameters: an array of integers and an integer. It
i. Write a program that Calls a method that performs sequential search. The method accepts two parameters: an array of integers and an integer. It returns the index of the integer in the array if it is found else it returns b. Calls another method that takes two parameters, an integer and a sorted integer array. The call should perform binary search and should return the index of the integer in the array if found and should return -(insertionPoint+ 1) if the number is not found. Print out the index in the main method. e. Calls a third method that performs binary search recursively. It should take 4 parameters: 3 integers and a sorted array of integers. It should return the index of the element if found, if not then it should return -1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
