Sha256: d94de928ac223214268685cb76ee8cfb8ecfb2d0cdcd30acb2849cc21e4d7423

Contents?: true

Size: 760 Bytes

Versions: 10

Compression:

Stored size: 760 Bytes

Contents

# Uses a binary search algorithm to locate a value in the specified array.
binary_search = (items, value) ->

  start = 0
  stop  = items.length - 1
  pivot = Math.floor (start + stop) / 2

  while items[pivot] isnt value and start < stop

    # Adjust the search area.
    stop  = pivot - 1 if value < items[pivot]
    start = pivot + 1 if value > items[pivot]

    # Recalculate the pivot.
    pivot = Math.floor (stop + start) / 2

  # Make sure we've found the correct value.
  if items[pivot] is value then pivot else -1


# Test the function.
console.log 2 is binary_search [10, 20, 30, 40, 50], 30
console.log 4 is binary_search [-97, 35, 67, 88, 1200], 1200
console.log 0 is binary_search [0, 45, 70], 0
console.log(-1 is binary_search [0, 45, 70], 10)

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
spade-packager-0.1.0.1 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-packager-0.1.0 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.8.1 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.7 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.6 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.5 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.4 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.3 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.2 packages/coffee-script/examples/computer_science/binary_search.coffee
spade-0.0.1 packages/coffee-script/examples/computer_science/binary_search.coffee