Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Use java program, Complete the exercise from the class period, i.e., create the binarySearch() method for String arrays from the downloaded version for ints. Wrap

Use java program, Complete the exercise from the class period, i.e., create the binarySearch() method for String arrays from the downloaded version for ints. Wrap a main around it, of course, so that we can see how it works.

// Returns the index of an occurrence of target in a,

// or a negative number if the target is not found.

// Precondition: elements of a are in sorted order

public static int binarySearch(int[] a, int target) {

int min = 0;

int max = a.length - 1;

while (min <= max) {

int mid = (min + max) / 2;

if (a[mid] < target) {

min = mid + 1;

} else if (a[mid] > target) {

max = mid - 1;

} else {

return mid; // target found

}

}

return -(min + 1); // target not found

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

Students also viewed these Databases questions