Module: Algorithmable::Sort
- Defined in:
- lib/algorithmable/sort.rb,
lib/algorithmable/sort/merge.rb,
lib/algorithmable/sort/bubble.rb,
lib/algorithmable/sort/binary_heap.rb
Defined Under Namespace
Classes: BinaryHeap, Bubble, Merge
Class Method Summary collapse
Class Method Details
.binary_heap(collection) ⇒ Object
16 17 18 |
# File 'lib/algorithmable/sort.rb', line 16 def binary_heap(collection) BinaryHeap.sort(collection) end |