15 sorting algorithms in 6 minutes (2013) [video]
Summary
A 2013 video visualizing and audibilizing 15 sorting algorithms in 6 minutes, including selection sort, quick sort, and bogo sort.
View Cached Full Text
Cached at: 06/25/26, 05:15 AM
Similar Articles
Sorting, hashing, and sketches on 370,103 words
A technical blog post that explores sorting, hashing, and sketching algorithms on a dataset of 370,103 English words, measuring time and memory costs, with a focus on practical implementations like binary search, quicksort, and HyperLogLog.
@0x0SojalSec: Learn algorithms visually! interactive visualizations that actually make concepts click, Prim's, Dijkstra, sorting it's…
Introduces a tool that provides live visualizations and code for learning algorithms like Prim's, Dijkstra, and sorting, making concepts easier to understand.
@tom_doerr: Interactive step-by-step visualizations for 24 algorithms https://github.com/TamimEhsan/AlgorithmVisualizer…
An interactive web-based tool that visualizes 24 algorithms step-by-step, covering pathfinding, sorting, recursion, and more, built with React.
Your code is fast – if you're lucky
This article presents a branchless Quicksort implementation using sorting networks and discusses how modern compilers, especially Clang, optimize loops with branch-free instructions when written in the right style.
Branchless Quicksort faster than std:sort and pdqsort with C and C++ API
A new branchless Quicksort implementation (blqsort) using sorting networks outperforms std::sort and pdqsort on Apple M1 and AMD Ryzen systems, available as single-header C and C++ libraries. It achieves speedups through branchless partitioning, median-of-medians pivot selection, and custom sorting networks for small arrays.