mentalmove / NaturalMergeSort

Visualisation of Natural Merge Sort Algorithm

Home Page:http://pure-code.mentalmove.com/javascript/sort/natural_merge_sort/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NaturalMergeSort

index.html visualises how Natural Merge Sort works in general

algorithm.js is a possible Javascript implementation

Basic idea

Initially sorted elements do not need to be sorted again. In the worst case, Natural Merge Sort has the same speed as Merge Sort.

To simplify understanding, this implementation uses recursion and does not take advantage of all possible optimisations.