Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6412541

Arrays.binarySearch does not work for arrays larger than 1<<30

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 6
    • core-libs
    • generic
    • generic

      Various binary search methods in java.util.Arrays compute the average of
      two positive indices (ints) like this:

      int mid = (low + high) >> 1;

      but if low + high overflows into negative territory, the result is negative,
      probably giving undefined results. An easy fix is the simple


      int mid = (low + high) >>> 1;

      although I have not tested whether this is enough to get sort + binary search
      to actually work properly on such gigantic arrays.

            martin Martin Buchholz
            martin Martin Buchholz
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: