Bucket Sort Algorith
Bucket Sort Algorith
In this tutorial, you will learn about the bucket sort algorithm and its
implementation in Python, Java, C, and C++.
Bucket Sort is a sorting algorithm that divides the unsorted array elements
into several groups called buckets. Each bucket is then sorted by using any
of the suitable sorting algorithms or recursively applying the same bucket
algorithm.
Finally, the sorted buckets are combined to form a final sorted array.
Input array
Create an array of size 10. Each slot of this array is used as a bucket for
storing elements.
Array in which each position is a bucket
2. Insert elements into the buckets from the array. The elements are inserted
according to the range of the bucket.
bucketSort()
create N buckets each of which can hold a range of values
for all the buckets
initialize each bucket with 0 values
for all the buckets
put elements into buckets matching the range
for all the buckets
sort elements in each bucket
gather elements from each bucket
end bucketSort
def bucketSort(array):
bucket = []
Best O(n+k)
Worst O(n2)
Average O(n)
Stability Yes
When there are elements of close range in the array, they are likely to be
placed in the same bucket. This may result in some buckets having more
number of elements than others.
It makes the complexity depend on the sorting algorithm used to sort the
elements of the bucket.
The complexity becomes even worse when the elements are in reverse
order. If insertion sort is used to sort elements of the bucket, then the time
complexity becomes O(n2) .
It occurs when the elements are uniformly distributed in the buckets with a
nearly equal number of elements in each bucket.
The complexity becomes even better if the elements inside the buckets are
already sorted.
If insertion sort is used to sort elements of a bucket then the overall
complexity in the best case will be linear ie. O(n+k) . O(n) is the complexity
for making the buckets and O(k) is the complexity for sorting the elements
of the bucket using algorithms having linear time complexity at the best
case.
Average Case Complexity: O(n)
It occurs when the elements are distributed randomly in the array. Even if
the elements are not distributed uniformly, bucket sort runs in linear time. It
holds true until the sum of the squares of the bucket sizes is linear in the
total number of elements.