fun <T : Comparable<T>> List<T?>.binarySearch( element: T?, fromIndex: Int = 0, toIndex: Int = size ): Int
Searches this list or its range for the provided element using the binary search algorithm. The list is expected to be sorted into ascending order according to the Comparable natural ordering of its elements, otherwise the result is undefined.
If the list contains multiple elements equal to the specified element, there is no guarantee which one will be found.
null
value is considered to be less than any non-null value.
Return the index of the element, if it is contained in the list within the specified range; otherwise, the inverted insertion point (-insertion point - 1)
. The insertion point is defined as the index at which the element should be inserted, so that the list (or the specified subrange of list) still remains sorted.
fun <T> List<T>.binarySearch( element: T, comparator: Comparator<in T>, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun <T> List<T>.binarySearch( element: T, comparator: Comparator<in T>, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JS
Searches this list or its range for the provided element using the binary search algorithm. The list is expected to be sorted into ascending order according to the specified comparator, otherwise the result is undefined.
If the list contains multiple elements equal to the specified element, there is no guarantee which one will be found.
null
value is considered to be less than any non-null value.
Return the index of the element, if it is contained in the list within the specified range; otherwise, the inverted insertion point (-insertion point - 1)
. The insertion point is defined as the index at which the element should be inserted, so that the list (or the specified subrange of list) still remains sorted according to the specified comparator.
fun <T> List<T>.binarySearch( fromIndex: Int = 0, toIndex: Int = size, comparison: (T) -> Int ): Int
Searches this list or its range for an element for which comparison function returns zero using the binary search algorithm. The list is expected to be sorted into ascending order according to the provided comparison, otherwise the result is undefined.
If the list contains multiple elements for which comparison returns zero, there is no guarantee which one will be found.
comparison
- function that compares an element of the list with the element being searched.
Return the index of the found element, if it is contained in the list within the specified range; otherwise, the inverted insertion point (-insertion point - 1)
. The insertion point is defined as the index at which the element should be inserted, so that the list (or the specified subrange of list) still remains sorted.
fun <T> Array<out T>.binarySearch( element: T, comparator: Comparator<in T>, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted according to the specified comparator, otherwise the result is undefined.
If the array contains multiple elements equal to the specified element, there is no guarantee which one will be found.
Return the index of the element, if it is contained in the array within the specified range; otherwise, the inverted insertion point (-insertion point - 1)
. The insertion point is defined as the index at which the element should be inserted, so that the array (or the specified subrange of array) still remains sorted according to the specified comparator.
fun <T> Array<out T>.binarySearch( element: T, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun ByteArray.binarySearch( element: Byte, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun ShortArray.binarySearch( element: Short, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun IntArray.binarySearch( element: Int, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun LongArray.binarySearch( element: Long, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun FloatArray.binarySearch( element: Float, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun DoubleArray.binarySearch( element: Double, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
fun CharArray.binarySearch( element: Char, fromIndex: Int = 0, toIndex: Int = size ): Int
Platform and version requirements: JVM
Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted, otherwise the result is undefined.
If the array contains multiple elements equal to the specified element, there is no guarantee which one will be found.
Return the index of the element, if it is contained in the array within the specified range; otherwise, the inverted insertion point (-insertion point - 1)
. The insertion point is defined as the index at which the element should be inserted, so that the array (or the specified subrange of array) still remains sorted.
© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/binary-search.html