Java Program for Radix Sorting

What is radix sort ?

Radix sort is the generalized bin sort.

Radix sort key idea is to bin sort all the array elements, first on f(k) (the least significant digit, then concentrate bins for the lowest value first, again bin sort on f(k-1) digit and so on.

Make sure each array element is appended to the end of the list, not the beginning.

Radix Sort Algorithm

Sort the array elements using counter range(0 to 9) based on least digit value.

Repeat the sorting for next digits till maximum element number digits.

Radix Sorting Steps

quick sorting

Radix Sorting Time complexity

Radix sorting time complexity is O(N∗logb(N)). here N is the number of elements in the list, b is the base for representing numbers.

Radix Sorting Java Program

import java.util.Scanner;

public class RadixSortingTest{
	public static int max(int[] listVals){		
		int maxVal = listVals[0];
		for(int i=1; i<listVals.length;i++){
			if(maxVal<listVals[i]){
				maxVal = listVals[i];
			}
		}
		return maxVal;
	}
	public static void countingSort(int[] listVals, int n, int place){
		int integerRange = 10;
		int[] freq = new int[integerRange];
		for(int i=0;i<integerRange;i++){
			freq[i] = 0;
		}
		int[] listSorted = new int[n];
		for(int i=0;i<n;i++){
			listSorted[i]=0;
		}
		for(int i=0;i<n;i++){
			freq[(listVals[i]/place)%integerRange] += 1;
		}
		for(int i=1;i<integerRange;i++){
			freq[i] += freq[i-1];
		}
		int i = n-1;
		while(i>=0){
			listSorted[freq[(listVals[i]/place)%10]-1]=listVals[i];
			freq[(listVals[i]/place)%10] -= 1;
			i -= 1;
		}
		for(int j=0;j<n;j++){
			listVals[j] = listSorted[j];
		}
	} 

	public static void radixSort(int[] listVals){
		int n = listVals.length;
		int maxVal = max(listVals);
		int mulVal = 1;
		while(maxVal>0){
			countingSort(listVals, n, mulVal);
			mulVal *= 10;
			maxVal /= 10;
		}
	}
	    
	public static void main(String[] args){
	    int[] numberList, sortedList;
	    Scanner in = new Scanner(System.in); 
	    System.out.println("Radix Sorting");
	    System.out.println("--------------------");
	    System.out.println("Enter numbers count: ");                   
	    int count = in.nextInt();                   
	    numberList = new int[count];
	    System.out.println("Enter numbers: "); 
	    for (int i=0;i<count;i++){
	    	numberList[i]=in.nextInt();
	    }
	    in.close();
	    radixSort(numberList);
	    
	    System.out.println("Sorted numbers: "); 
	    for(int number : numberList){
	    	System.out.print(number+"\t");
	    }
	}
}                                                                                                                                                                                                               
Output:
$ javac RadixSortingTest.java
$ java RadixSortingTest 
Radix Sorting
--------------------
Enter numbers count: 
5
Enter numbers: 
2
3
1
5
4
Sorted numbers: 
1	2	3	4	5


Java Examples

GCD and Rational Number Java Program

Java Queue Program using exception

Java Stack Program using exception

Addition of three integers java program

Biggest of three integers java program

Fibonacci numbers java program

Arithmetic Operations Menu java program

Second Smallest Element In Array Java Program

Transpose Of A Matrix Java Program

Java Program to Display triangle of stars (*)

Java Programming Prints Product Tables

Java Program to Display triangle of numbers

Java Program to Get Current Date

Java Program to Find Character Vowel or Consonent

Java Program to Compute HCF and LCM

Java Program to Sum the Command Line Integer Arguments

Java Programm to Multiply the Command Line Integer Arguments

Java Program to Find Multiplication of Command Line Floating Point Numeric Arguments

Java Program to Check String Contains or Not

Java Program to Get Grade Description using Switch

Java Program for CSV File Reader

Java Program to Find Character Frequency Count in String using for each

Java Program to Find Min from Integer Array by Passing Array to Method

Java Program Linear Search

Binary Search Java Program

Ternary Search Java Program

Java Program to Generate Range of Numbers

Java Program to Generate Range of Characters

Java Program to Compute Square Root Value

Java Program to Check Number is Positive or Negative

Java Program to Check Number is Odd or Even

Java Program to Compute Plot Area

Java Program to Convert Number of Days into Years

Java Program to Check a Year is Leap Year, Century Year or Not

Java Program to Check a Character is Digit, Letter or neither digit nor letter

Java Program to Check a Number is Palindrome or not

Java Program to Sum Two Matrix

Java Program to Compute Power

Java Program to Check Number is an Armstrong Number or not

Java Program for Temperature Unit Conversions

Java Program to Generate Random Numbers in Specified Range

Java Program to Compute Sum of Digits and Product of Digits

Java Program to Compute Reverse Number

Java Programming Computes Factorial Value

Java Programming Checks Prime Number or not

Java Program to Compute Harmonic Series

Java Program Generate Floyd's Triangle

Java Program to Reverse String

Java Program to Check Palindrome String or not

Java Program to Open Notepad

Java Program to Search String using RegEx Pattern

Java Program to Search Word in String

Java Program to Get System Environment Variables

Java Program to Get IP Address of Server Name

Java Program for Arrays Sorting and Reverse using sort method

Java Program for Bubble Sorting

Java Program for Selection Sorting

Java Program for Insertion Sorting

Java Program for Merge Sorting

Java Program for Quick Sorting

Java Program for Counting Sort

Java Program for Radix Sorting

Java Program for Sorting Array of Strings

Java Program for String Characters Sorting

Java Program to Sum First N Numbers

Java Program to Product First N Numbers

Java Program to get URL details

Java Program to get URL HTML Content

Java Program to get URL details

Java Program to get URL HTML Content

Privacy Policy  |  Copyrightcopyright symbol2020 - All Rights Reserved.  |  Contact us   |  Report website issues in Github   |  Facebook page   |  Google+ page

Email Facebook Google LinkedIn Twitter
^