Hacker News
- Quicksort with Jenkins for fun and no profit https://susam.net/blog/jenkins-quicksort.html 39 comments
- QuickSort Algorithm (2018) [video] https://www.youtube.com/watch?v=7h1s2SojIRw 3 comments
- Show HN: Fluxsort, a stable Quicksort, faster and more adaptive than Timsort https://github.com/scandum/fluxsort 2 comments
- Pattern-defeating quicksort https://github.com/orlp/pdqsort 72 comments
Lobsters
- A fast quicksort in Clojure http://clojurefun.wordpress.com/2012/08/29/a-fast-quicksort-in-clojure/ 4 comments lisp
- Blipsort (Branchless Lomuto in Pattern Defeating Quicksort) https://github.com/RedBedHed/blipsort 3 comments programming
- The curious case of the always O(n*logn) QuickSort https://itnext.io/the-curious-case-of-the-always-o-n-logn-quicksort-603b56230e6 8 comments cpp
- JDK-8266431: Dual-pivot quicksort improvements (radix sort) by bourgesl · Pull Request #3830 · openjdk/jdk https://github.com/openjdk/jdk/pull/3830 21 comments java
- Lomuto’s Comeback -- quicksort partitioning https://dlang.org/blog/2020/05/14/lomutos-comeback/ 34 comments programming
- Make Quicksort fast by using threads and avoiding branch misprediction https://easylang.online/blog/qsort_c.html 21 comments programming
- Writing the slowest quicksort https://chasewilson.dev/blog/slowest-quicksort/ 48 comments rust
- Implementing Quicksort in JavaScript https://medium.com/@charles_stover/implementing-quicksort-in-javascript-8044a8e2bf39 3 comments javascript
- An overview of sorting algorithms and a pretty fast multithreaded Quicksort in C https://kabas.online/tutor/sorting.html 2 comments compsci
- An overview of sorting algorithms and a pretty fast multithreaded Quicksort in C https://kabas.online/tutor/sorting.html 25 comments programming
- A sort of quick guide to quicksort and Hoare’s partitioning scheme in Javascript https://medium.com/p/7792112c6d1 3 comments math
- Let's Write Quicksort in J https://greenjenny.com/2018/05/28/lets-write-quicksort-in-j.html 2 comments apljk
- An overview of sorting algorithms and a pretty fast multithreaded Quicksort in C. https://kabas.online/sorting.html 16 comments learnprogramming
- 3-Way QuickSort https://www.reddit.com/r/learnprogramming/comments/6o8nf5/3way_quicksort/ 9 comments learnprogramming
- constexpr quicksort in C++17 http://playfulprogramming.blogspot.com/2017/06/constexpr-quicksort-in-c17.html 12 comments cpp
- Implemented quicksort! https://www.reddit.com/r/rust/comments/4ycacn/implemented_quicksort/ 13 comments rust
- Quicksort (and why knowing a little about theory is a good thing) http://maniagnosis.crsr.net/2016/02/quicksort.html 19 comments programming
- I have published a double-pivot quicksort library for Rust similar to that of JDK 7. https://crates.io/crates/doublepivot-quicksort/ 8 comments rust
- [Computer Science] Why does this QuickSort algorithm not have O(n * logn) efficiency? http://danishmujeeb.com/blog/2014/01/basic-sorting-algorithms-implemented-in-python 10 comments learnprogramming
- I’ve been playing around with Swift’s functional features, and I want to give /r/swift an example of how easy it is to implement Quicksort. Hopefully this can change the minds of those who still aren’t on board with this great language. http://www.infinitepalettes.com/blog/2015/2/27/functional-swift-and-quicksort 5 comments swift
- Why do most quicksort implementations calculate the pivot point with "middle = low + (high - low) / 2;" http://www.programcreek.com/2012/11/quicksort-array-in-java/ 5 comments learnprogramming
- Understanding Quicksort, and taking advantage of JS's native implementation http://antjanus.com/blog/web-development-tutorials/understanding-quicksort-js-native-implementation/ 4 comments javascript
- Understanding Quicksort, and taking advantage of JS's native implementation http://antjanus.com/blog/web-development-tutorials/understanding-quicksort-js-native-implementation/ 8 comments webdev
- Why is quicksort better than other sorting algorithms in practice? http://programmers.stackexchange.com/q/150615/1130 26 comments programming
- Ever wanted to implement quicksort as an anonymous recursive function using the Y-combinator in MATLAB? Good news! https://gist.github.com/2590371 3 comments matlab
- Algorithm cheatsheet: Quicksort http://www.stoimen.com/blog/2012/03/12/algorithm-cheatsheet-quicksort/ 81 comments programming
- [C++] Quicksorting problem http://pastebin.com/NdEihHgY 4 comments learnprogramming
- Radix sort vs quicksort. Which one is faster for int arrays? (benchmark with C/Java code) http://erik.gorset.no/2011/04/radix-sort-is-faster-than-quicksort.html 98 comments programming
- Vladimir Yaroslavskiy's Dual-Pivot Quicksort. Quicksort's Jon Bentley comments: " I think that Vladimir's contributions to Quicksort go way beyond anything that I've ever done" http://permalink.gmane.org/gmane.comp.java.openjdk.core-libs.devel/2628 144 comments programming
- Why it might be time to start teaching Quicksort to your five-year-old http://blog.newsweek.com/blogs/nurtureshock/archive/2009/08/30/a-5-minute-intelligence-test-for-kids.aspx 29 comments programming
- Visualization of Quicksort using 3D graphics http://www.youtube.com/watch?v=vxenklcs2tw 62 comments programming
- Improving the Haskell Quicksort http://comonad.com/reader/2008/a-sort-of-difference/ 14 comments programming
- Quicksort killer in C# http://igoro.com/archive/quicksort-killer/ 2 comments programming
- Killing Quicksort (forcing quadratic behavior) http://research.swtch.com/2008/01/killing-quicksort.html 57 comments programming
- *Real* Quicksort in Haskell http://augustss.blogspot.com/2007/08/quicksort-in-haskell-quicksort-is.html 22 comments programming
- Famous inventor of QuickSort talks about science, computer and working through a Ph.D. http://www.kierberg.com/videos/advice-for-phd-students-from-tony-hoare 9 comments programming