javascript-algorithms
javascript-algorithms copied to clipboard
Add Tim Sort
I implemented the Tim Sort. I tried to keep it in the same fashion as other sorting algorithms as much as possible. I even used the source code of insertion sort in order to make the code better to understand. The reason I used the reference method for insertion sort and merging over allocating a new memory is nothing but optimization.