Add merge sort.

This commit is contained in:
Oleksii Trekhleb
2018-04-14 11:48:33 +03:00
parent b17ba61348
commit ed2abde623
5 changed files with 148 additions and 0 deletions

View File

@ -35,6 +35,7 @@
* [Selection Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/selection-sort)
* [Insertion Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/insertion-sort)
* [Heap Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/heap-sort)
* [Merge Sort](https://github.com/trekhleb/javascript-algorithms/tree/master/src/algorithms/sorting/merge-sort)
## Running Tests