Skip to content
Codeloom

Topics / Sorting

📊

Sorting

Bubble, insertion, merge, quick, heap — and the engineering judgement to just call sort().

Why learn Sorting?

  • Many problems become trivial after a sort step.

  • Merge sort and quick sort showcase divide-and-conquer brilliantly.

  • Counting sort and bucket sort appear in unexpected places.

What you can build with Sorting

Custom comparators and stable sorts Pre-processing step for interval and array problems External sorting for large datasets

Sorting tutorials

1 article · page 1 of 1

Hand-written tutorials, ordered as a recommended learning path.

  1. 01 Interval Problems Master interval problems on LeetCode: sorting, merging, inserting, and scheduling with templates, visual walkthroughs, and complexity analysis.