Dwarves
Memo
Type ESC to close search bar

Radix Sort

Radix Sort is a non-comparative sorting algorithm that sorts integers by processing individual digits. Unlike comparison-based algorithms (like Quick Sort or Merge Sort), Radix Sort groups numbers by their individual digits.

Key Concepts

Steps of Radix Sort

Big O notation

If we take

the time complexity for Radix sort will be O(n×k) and the space complexity will be O(n+k)

Advantages

Disadvantages