Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
9
Task/Binary-search/CoffeeScript/binary-search-2.coffee
Normal file
9
Task/Binary-search/CoffeeScript/binary-search-2.coffee
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
binarySearch = (xs, x) ->
|
||||
[low, high] = [0, xs.length - 1]
|
||||
while low <= high
|
||||
mid = Math.floor (low + high) / 2
|
||||
switch
|
||||
when xs[mid] > x then high = mid - 1
|
||||
when xs[mid] < x then low = mid + 1
|
||||
else return mid
|
||||
NaN
|
||||
Loading…
Add table
Add a link
Reference in a new issue