static int binarySearch(List extends Comparable super T>> list, T key)
Searches the specified list for the specified object using the binary search algorithm.
static int binarySearch(List extends T> list, T key, Comparator super T> c)
Searches the specified list for the specified object using the binary search algorithm.