Method: Algorithmable::Sort.binary_heap

Defined in:
lib/algorithmable/sort.rb

.binary_heap(collection) ⇒ Object



28
29
30
# File 'lib/algorithmable/sort.rb', line 28

def binary_heap(collection)
  BinaryHeap.sort(collection)
end