sorts 0.3.0

A collection of sorting algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Sorts
A small sorting algorithms collection written in Rust _for learning purposes_.

## Algorithms
Below is a list of all implemented sorting algorithms. Algorithms that are
not yet crossed are on the todo list.

- [X] Bubble sort
- [X] Merge sort
- [ ] Insertion sort
- [ ] Selection sort