Kotlin - Completed Binary Search

This commit is contained in:
Anthony C 2017-08-02 13:24:12 -04:00
parent d2abc4180e
commit 568e69fe4d

View file

@ -0,0 +1,20 @@
class BinarySearch {
companion object {
fun search(inpList: List<Int>, searchElement: Int): Int {
require(inpList.sorted() == inpList)
var leftBound = 0
var rightBound = inpList.size - 1
while (leftBound <= rightBound){
val middle = Math.floor(((leftBound + rightBound)/2).toDouble()).toInt()
if (inpList[middle] < searchElement){
leftBound = middle + 1
}
else if (inpList[middle] > searchElement){
rightBound = middle - 1
}
else return middle
}
return -1
}
}
}