Skip to content

Instantly share code, notes, and snippets.

@mashihua
Last active August 29, 2015 13:57
Show Gist options
  • Save mashihua/9361860 to your computer and use it in GitHub Desktop.
Save mashihua/9361860 to your computer and use it in GitHub Desktop.
bsearch = (key, values, comp)->
max = values.length
min = 0
comp = comp or (a, b)-> a - b
while true
if min > max
return -1
mid = max + min >> 1
cmp = comp key, values[mid]
if cmp is 0
return mid
if cmp > 0 # movie right
min = mid + 1
else
max = mid - 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment