An open API service indexing awesome lists of open source software.

https://github.com/dmitry/algorithms

Algorithms of sorting, graphs, trees written in Ruby
https://github.com/dmitry/algorithms

Last synced: about 1 year ago
JSON representation

Algorithms of sorting, graphs, trees written in Ruby

Awesome Lists containing this project

README

          

algorithms
==========

Algorithms of sorting, graphs, trees written in Ruby

## Sort

- ☑ Bubble Sort
- ☑ Insertion Sort
- ☑ Selection Sort
- ☐ Timsort
- ☐ Merge Sort
- ☐ Quicksort
- ☐ Heap Sort

#### Helpful resources

* https://en.wikipedia.org/wiki/Sorting_algorithm
* http://www.sorting-algorithms.com/

## Tree

- ☐ Binary Search Tree (BST)
- ☐ k-dimensional (k-d tree)
- ☐ Vintage-point Tree (VP tree)