Class SortedLists

java.lang.Object
org.magicwerk.brownies.collections.helper.SortedLists

public class SortedLists extends Object
Static methods pertaining to sorted List instances. In this documentation, the terms greatest, greater, least, and lesser are considered to refer to the comparator on the elements, and the terms first and last are considered to refer to the elements' ordering in a list.
  • Constructor Details

    • SortedLists

      private SortedLists()
  • Method Details

    • binarySearch

      public static <E> int binarySearch(List<? extends E> list, E key, Comparator<? super E> comparator, SortedLists.KeyPresentBehavior presentBehavior, SortedLists.KeyAbsentBehavior absentBehavior)
      Searches the specified list for the specified object using the binary search algorithm. The list must be sorted into ascending order according to the specified comparator (as by the Collections.sort(List, Comparator) method), prior to making this call. If it is not sorted, the results are undefined.

      If there are elements in the list which compare as equal to the key, the choice of SortedLists.KeyPresentBehavior decides which index is returned. If no elements compare as equal to the key, the choice of SortedLists.KeyAbsentBehavior decides which index is returned.

      This method runs in log(n) time on random-access lists, which offer near-constant-time access to each list element.

      Parameters:
      list - the list to be searched.
      key - the value to be searched for.
      comparator - the comparator by which the list is ordered.
      presentBehavior - the specification for what to do if at least one element of the list compares as equal to the key.
      absentBehavior - the specification for what to do if no elements of the list compare as equal to the key.
      Returns:
      the index determined by the KeyPresentBehavior, if the key is in the list; otherwise the index determined by the KeyAbsentBehavior.
    • binarySearchAdd

      public static <E> int binarySearchAdd(List<? extends E> list, E key, Comparator<? super E> comparator)
      Return the index of the first list element that compares as greater than the key, or list.size() if there is no such element.
    • binarySearchGet

      public static <E> int binarySearchGet(List<? extends E> list, E key, Comparator<? super E> comparator)
      Return the index of the first list element that compares as equal to the key.