java ( 1553126 ) - java ( 1553144 ) stack: com.thealgorithms.searches.IterativeBinarySearch.main(IterativeBinarySearch.java:60)
package com.thealgorithms.searches;
import com.thealgorithms.devutils.searches.SearchAlgorithm;
import java.util.Arrays;
import java.util.Random;
import java.util.stream.Stream;
/**
 * Binary search is one of the most popular algorithms This class represents
 * iterative version {@link BinarySearch} Iterative binary search is likely to
 * have lower constant factors because it doesn't involve the overhead of
 * manipulating the call stack. But in java the recursive version can be
 * optimized by the compiler to this version.
 *
 * 
 * Worst-case performance O(log n) Best-case performance O(1) Average
 * performance O(log n) Worst-case space complexity O(1)
 *
 * @author Gabriele La Greca : https://github.com/thegabriele97
 * @author Podshivalov Nikita (https://github.com/nikitap492)
 * @see SearchAlgorithm
 * @see BinarySearch
 */
public final class IterativeBinarySearch implements SearchAlgorithm {
    /**
     * This method implements an iterative version of binary search algorithm
     *
     * @param array a sorted array
     * @param key the key to search in array
     * @return the index of key in the array or -1 if not found
     */
    @Override
    public > int find(T[] array, T key) {
        int l;
        int r;
        int k;
        int cmp;
        l = 0;
        r = array.length - 1;
        while (l <= r) {
            k = (l + r) >>> 1;
            cmp = key.compareTo(array[k]);
            if (cmp == 0) {
                return k;
            } else if (cmp < 0) {
                r = --k;
            } else {
                l = ++k;
            }
        }
        return -1;
    }
    // Only a main method for test purpose
    public static void main(String[] args) {
        Random r = new Random();
        int size = 100;
        int maxElement = 100000;
        Integer[] integers = Stream.generate(() -> r.nextInt(maxElement)).limit(size).sorted().toArray(Integer[] ::new);
        // the element that should be found
        Integer shouldBeFound = integers[r.nextInt(size - 1)];
        IterativeBinarySearch search = new IterativeBinarySearch();
        int atIndex = search.find(integers, shouldBeFound);
        System.out.printf("Should be found: %d. Found %d at index %d. An array length %d%n", shouldBeFound, integers[atIndex], atIndex, size);
        int toCheck = Arrays.binarySearch(integers, shouldBeFound);
        System.out.printf("Found by system method at an index: %d. Is equal: %b%n", toCheck, toCheck == atIndex);
    }
} 
 | No. | From | Name | Value | 
|---|---|---|---|
| 1 | 60 | args | [Ljava.lang.String;@4e25154f | 
| END | 0 | 0 | 0 | 
| Process Filter | Thread Filter | 
|---|---|
| 1553126 java | 1553144 java | 
| No. | PN | PID | TID | TN | Message | 
|---|---|---|---|---|---|
| 1 | java | 1553126 | 1553144 | java | Should be found: | 
| 2 | java | 1553126 | 1553144 | java | 69036 | 
| 3 | java | 1553126 | 1553144 | java | . Found | 
| 4 | java | 1553126 | 1553144 | java | 69036 | 
| 5 | java | 1553126 | 1553144 | java | at index | 
| 6 | java | 1553126 | 1553144 | java | 74 | 
| 7 | java | 1553126 | 1553144 | java | . An array length | 
| 8 | java | 1553126 | 1553144 | java | 100 | 
| 9 | java | 1553126 | 1553144 | java | |
| 10 | java | 1553126 | 1553144 | java | Found by system method at an index: | 
| 11 | java | 1553126 | 1553144 | java | 74 | 
| 12 | java | 1553126 | 1553144 | java | . Is equal: | 
| 13 | java | 1553126 | 1553144 | java | true | 
| 14 | java | 1553126 | 1553144 | java | |
| END | 0 | 0 | 0 | 0 | 0 | 
Functions and Shortcuts
| No. | Function | Shortcuts | Description | 
|---|---|---|---|
| 1 | GB | Alt + LEFT, Alt + A | Go Backward | 
| 2 | GF | Alt + RIGHT, Alt + D | Go Foreward | 
| 3 | PPE | Alt + UP, Alt + W | Previous Process End | 
| 4 | NPS | Alt + DOWN, Alt + S | Next Process Start | 
| 5 | PB | Ctrl + LEFT, Ctrl + A | current Process Backward | 
| 6 | PF | Ctrl + RIGHT, Ctrl + D | current Process Foreward | 
| 7 | PPTE | Ctrl + UP, Ctrl + W | go to current Process's Previous Thread's End | 
| 8 | PNTS | Ctrl + DOWN, Ctrl + S | go to current Process's Next Thread's Start | 
| 9 | TB | LEFT, A | current Thread Backward | 
| 10 | TF | RIGHT, D | current Thread Foreward | 
| 11 | LU | UP, W | go Line Up of current code block in current thread | 
| 12 | LD | DOWN, S | go Line Down of current code block in current thread | 
| 13 | LP | Shift + UP, Shift + W | go to the occurrence of current line in Previous Loop | 
| 14 | LD | Shift + DOWN, Shift + S | go to the occurrence of current line in Next Loop | 
| 15 | BS | Home | go to code Block Start | 
| 16 | BE | End | go to code Block End | 
| Project: | Alg-Java | 
| Update: | 20240824 | 
| Commit: | a7cd97d7 | 
| Source Code: | searches.IterativeBinarySearch | 
| BuildTool: | Java17 | 
| Compiler: | Java17 | 
| Runtime: | Openjdk17 | 
| System: | MySystemD | 
| Kernel: | Linux5.10.211 | 
| Cpu: | Intel:Corei7-7700K | 
| Machine: | AwesomeMachine |