Bucket Sort distributes elements into a number of buckets, sorts each bucket individually (often using another sort), and then concatenates them to get a sorted array.
Paradigm
Distribution / Bucket
Author
H. H. M. A. Williams
Tier
Time Complexity
Best
Avg
Worst
Space
O(n + k)
Properties