×

Bucket Sort in Java

Bucket sort is also called bin sort. Bucket sort first puts the elements of the array or list into different buckets. The first bucket contains elements of the smallest value. The second bucket contains elements that are greater than elements that are present in the first bucket. Similarly, the third bucket contains elements that are greater than the second bucket’s elements, and so on. Thus, buckets are sorted. After that, one by one, each bucket is taken and sorted. Bucket sort is specifically used when input numbers are distributed in a uniform manner over a given range. 

In this section, we will implement bucket sort approach in a Java program.

Algorithm  

Step I: Create an empty bucket.

Step II: Distribute elements of the input array in such a way that buckets are sorted automatically.

Step III: Iterative over each bucket and check whether it is empty or not. If the bucket is empty, move to the next bucket. If the bucket is not empty, sort the elements present in the array.

Step IV: Concatenate the elements of buckets one by one. The array or list thus formed is the sorted array or list.

Pseudo Code

Java Program
The following code implements Bucket sort using the pseudo-code defined above.

FileName: BucketSortExample.java


Output:

Explanation: The size of the input array is 8. Therefore, the first element, 0.697, goes in the 5th bucket [0.697 * 8 = 5.576 => 5 (taking only the integral part)]. The second element goes in the bucket whose index is the integer part of 3.72 (0.465 * 8 = 3.72), which is 3. In the same way, the other elements can also be put into different buckets. The following diagram illustrates the same.

Bucket Sort in Java
Bucket Sort in Java

After putting every number in the buckets, the static method sort() is called on each bucket to sort the elements fetched by the buckets.

As per the pseudo-code, the last part is concatenation, which is nothing but re-writing the input array a[] from starting to ending using the values stored in the buckets. The last for-loop of the method bucketSorting() does the same. The final sorted array is shown below.

Bucket Sort in Java

Sorting numbers having non-zero integer part

So far, we have only sorted numbers that had integer parts as 0 (see the input of the above example). However, the above program fails when numbers like 1.234 are given. To handle such numbers some modification has to be made in the above program. But first of all, observe the algorithm to sort numbers that have a non-zero integer part.

Algorithm 

Step I: Calculate the minimum and maximum elements of the input array.

Step II: Find the range of each bucket.

          range = (maximum – minimum) / N

          Here, N represents the total number of buckets.

Step III: Make N buckets with the help range calculate above.

Step IV: Spread the elements of the array into these buckets, i.e.,
                bucketIdx = ( array[j] – minimum ) / range

Step V: Now, do the sorting of each of the bucket one by one

Step VI: Collect all the sorted elements from the buckets one by one and do the concatenation to form the sorted array.

Now observe the program that is based on the above algorithm.

FileName: BucketSortExample.java

Output:


Explanation: The maximum value element is 8.0934, and the minimum value element is 0.865. Therefore, the range of each of the bucket is:

(integer part of (8.0934) – integer part of (0.865)) / 8 => (8 – 0) / 8 = 1.

Thus, the first element of the input array, 2.697 goes to the integer part of ((2.697 – 0.865) / 1) => 1. Thus, the bucket sitting at index 1 stores the number 2.697. Similarly, the index of the buckets can be calculated for other numbers too.

After determining the index of the bucket for every number, the rest of the code behaves in the same way it is behaving in the previous example.


Analysis of the bucket sort

Bucket Sort works on the scattering and gathering approach. Therefore, it is also known as the distribution sort. The bucket sort is sometimes also called the cousin of radix sort, as this sorting algorithm support moving from the most to least significant digits of a number to do the sorting work.


Time Complexity

The time complexity of bucket sort depends on the distribution of the elements. The uniform distribution leads to a better time-complexity when compared with the non-uniform distribution of elements.

The worst time complexity occurs when all the elements are stored in a single container. The time complexity in this scenario is O(n^2), where n is the total number of elements present in the array.

The best time complexity occurs when there is a uniform distribution of elements in the buckets, which means every bucket contains almost an equal number of elements. The time complexity, in this case, is O(n + p), where O(p) is the time complexity of sorting the elements present in the bucket. In this case, we have to use an algorithm that has the linear time complexity to sort the elements present in the bucket. O(n) is the time complexity for the creation of the buckets.


The average time complexity occurs when elements are randomly distributed in the input array. Thus, every bucket does not contain an equal number of elements. The bucket sort algorithm in such a scenario gives the time complexity as O(n + n^2/p + p), where n is the total number of elements and p is the total number of buckets.

Note that conventionally, insertion sort is used to sort the elements present in a bucket.

Space Complexity

Suppose one has created k buckets to do the sorting of a given array. Therefore, till this point, the space complexity is O(k). Now, the maximum number of elements these buckets can hold is the total number of elements present in the input array. If n represents the total number of elements present in the array, then the space complexity of the bucket sort algorithm is O(n + k).

Conclusion

The bucket sort algorithm cannot be used on any given data set. One has to analyze whether the data is uniformly distributed or not. If the data is not uniformly distributed, this is not the algorithm that should be used to accomplish the sorting process.

Note that counting sort gives a glimpse of counting sort. Think of a scenario when each bucket is holding only one element.


Related Topics

Pernicious Number in Java

If the number of 1s in a number appearing in the binary representation is the prime number, such a number is known as a pernicious number. A pernicious number always corresponds to...

4 minutes read.

Java exception list

Java uses exceptions, like the majority of contemporary programming languages, to deal with both errors and "extraordinary events." When an exception arises inside the program, it messes up the regular...

6 minutes read.

Sliding Window Problem in Java

A sliding window is used in computer science and data science to process large datasets. It involves breaking the dataset into smaller chunks or windows and then processing it in...

6 minutes read.

How to Create Singleton Class in Java

In this tutorial, we will discuss the singleton class and how to create it. Introduction Java is a purely object-oriented programming language. It consists of classes and objects. But Singleton is one...

4 minutes read.

Heart Pattern in Java

Heart Pattern is yet another intricate pattern program, however, due to its complexity, interviewers hardly ever inquire about it. Method for Printing the Heart Number Pattern Put the value of the total row...

2 minutes read.

Java Integer lowestOneBit()

The lowestOneBit () method of Java Integer class returns an int value with at most a single one-bit, in the position of the lowest-order one-bit in the specified int value.  Syntax public...

2 minutes read.

How to remove last character from String in Java

In java, there are predominantly three classes connected with the string. The classes are String, StringBuilder, and StringBuffer class that gives techniques connected with string control. Eliminating the first and...

5 minutes read.

How to Convert Object to String in Java

How to Convert Object to String in Java You can convert any Object to String in Java whether it is a user-defined class, StringBuilder or StringBuffer, etc. There are two methods...

2 minutes read.

Reverse a String using Collections in Java

Generally, a String is a grouping of characters. Yet, in Java, a String is an item that addresses a succession of characters. The Java.lang.String class is utilized to make a...

5 minutes read.

Contextual keywords in Java

Contextual keywords were earlier known as restricted identifiers and restricted keywords. Context keywords are chosen based on their expected placement in the syntactic grammar. These are the keywords in the code...

3 minutes read.

Java Math addExact() Method

The addExact() method of Math class returns the sum of the two arguments, throwing an exception if the result overflows a long or an int. Syntax public static int addExact (int x,...

1 minute read.

Java Control Statements

Control Statements: Control statements in Java can also be referred to as decision-making while dealing with different problems. Control statements are helpful to sort out the flow of the program or...

7 minutes read.

Java Boolean Class

The Boolean class wraps a value of the Boolean primitive in an object. Its object contains only a single field whose type is Boolean. Boolean Methods: This class contains several different methods...

2 minutes read.

Difference Between Thread.start() and Thread.run()

In the Java programming language, the multi-threading concept consists of the start() and run() methods. Thread.start(): The thread's execution is initiated by invoking the start() method. The start() method operates two threads...

4 minutes read.

Java program to print matrix in Z form

In this article, you will be acknowledged about what is a matrix along with an example. Also, most importantly, you will learn how to print matrix in Z form. What is...

5 minutes read.

Java Program to Print Permutations of String

A string is given and you need to print all the possible ways for that string. Permutation is arranging the characters of a string to get outputs from the given...

3 minutes read.

Java Generics Questions

Introduction We'll walk through a few real-world examples of interview questions and responses for Java generics in this article. Java 5 saw the debut of the fundamental idea of generics. Due to...

9 minutes read.

Bellman Ford Algorithm in Java

Numerous algorithms have been used in dynamic programming to determine the shortest path inside a graph. Among them are Floyd, all-pair shortest path problem, Breadth First Search, Depth First Search,...

6 minutes read.

Java calculate age

In this section, we will create a Java program that calculates age from the given date of birth or current date. In order to get the date of birth from the current...

6 minutes read.

How to Calculate Week Number From Current Date in Java?

The WeekFields class's weekOfMonth() method is utilized to return the field for access the week of a month based on this WeekFields. If the first day of the month is a...

3 minutes read.