1. [冒泡排序(simple)](https://github.com/5201314999/algorithm/blob/master/code/js/bubbleSort.js) 2. [选择排序 (simple)](https://github.com/5201314999/algorithm/blob/master/code/js/selectionSort.js) 3. [插入排序 (simple)](https://github.com/5201314999/algorithm/blob/master/code/js/insertionSort.js) 4. 希尔排序 (simple-2) 5. [归并排序/分治排序](https://github.com/5201314999/algorithm/blob/master/code/js/mergeSort.js)