public class BinarySearch { public static void main(String[] args) { int[] myList = {1, 2, 3, 7, 10, 12, 20); int result = binarySearch (myList, 20); if (result == -1) System.out.println("Not else System.out.println("The } found!"); index of the input key is } public static int binarySearch(int[] list. int..key). { // finish the binary search method here | + result+ ".");
public class BinarySearch { public static void main(String[] args) { int[] myList = {1, 2, 3, 7, 10, 12, 20); int result = binarySearch (myList, 20); if (result == -1) System.out.println("Not else System.out.println("The } found!"); index of the input key is } public static int binarySearch(int[] list. int..key). { // finish the binary search method here | + result+ ".");
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Given a pre-sorted (in ascending order) array and a key, output the index of the key. Implement
the Binary Search in Eclipse by creating a binarySearch method, and ensure it runs without errors.
Expert Solution
Step 1
The algorithm for the binary search implementation in the code is as follows:
- Initialize two variables, low and high, to keep track of the range of indices being searched. low is set to 0 and high is set to the last index of the input array list.
- Start a loop that continues while low is less than or equal to high.
- Calculate the middle index mid of the current search range by adding low and high and dividing by 2.
- Check if the value at the middle index mid is equal to the key being searched for. If it is, return the index mid as the result.
- If the value at the middle index mid is less than the key, set low to mid + 1 to search the right half of the current search range.
- If the value at the middle index mid is greater than the key, set high to mid - 1 to search the left half of the current search range.
- If the loop terminates without finding the key, return -1 to indicate that the key was not found in the array.
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education