Sorting algorithm

Andrei Alexandrescu SeeWebsiteForEmail at erdani.org
Fri Oct 7 10:03:59 PDT 2011


On 10/7/11 11:42 AM, Xinok wrote:
> Hi, it's been years since I've posted here. I just wanted to share
> something I worked on, a new sorting algorithm. It's a variant of merge
> sort, but much more memory efficient with only a small loss in
> performance. The most similar algorithm I know of is Timsort.
>
> I had need for a stable sorting algorithm, but the performance of stable
> sort in Phobos is terrible. This pretty much left merge sort, which has
> good performance but requires O(n) space. That persuaded me to design my
> own sorting algorithm.
>
> Here, you can find the code, details of the algorithm, and benchmarks
> (introSort is the unstable sort in Phobos).
> http://www.neowin.net/forum/blog/422/entry-3737-sort-algorithm-complete/

This is interesting. What do the numbers in the benchmark represent?

Andrei


More information about the Digitalmars-d mailing list