Hacker News new | ask | show | jobs
by NeoBasilisk 2377 days ago
It's probably because the implementation of the algorithm is the simplest, because you don't need to modify the existing data structure. You don't need to merge or create new arrays. You just repeatedly loop and swap two elements when needed. Super easy by all metrics.
1 comments

You don’t need to modify the data structure for most quadratic sorts though. Or even for quick sort.
Most people get the partition algorithm wrong on their first try if they write it themselves.