Java教程

基数排序

本文主要是介绍基数排序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

package demo;

public class P51 {
//基数排序
//思路:数组中最大值位数为k,从个位开始往高位进行k轮(桶排序+填回原数组),每轮以那一位的数字为分桶的依据
public static void main(String[] args) {
int[] a = {49, 38, 65, 197, 76, 213, 27, 50};
radixSort(a, getMaxPos(a));
for (int i : a)
System.out.print(i + ", ");
}

//pos=1表示个位,pos=2表示十位
public static int getNumInPos(int num, int pos) {
    int tmp = 1;
    for (int i = 0; i < pos - 1; i++) {
        tmp *= 10;
    }
    return (num / tmp) % 10;
}

//求得最大位数d
public static int getMaxPos(int[] a) {
    int max = a[0];
    for (int i = 0; i < a.length; i++) {
        if (a[i] > max)
            max = a[i];
    }
    int d=1;
    while(max/10 != 0) {
    	d++;
    	max=max/10;
    }
    	
    return d;
}

public static void radixSort(int[] a, int maxPos) {

    int[][] array = new int[10][a.length + 1];
    for (int i = 0; i < 10; i++) {
        array[i][0] = 0;// array[i][0]记录第i行数据的个数
    }
    
    for (int pos = 1; pos <= maxPos; pos++) {
    	// 分配的过程
        for (int i = 0; i < a.length; i++) {		
            int row = getNumInPos(a[i], pos);
            int col = ++array[row][0];
            array[row][col] = a[i];
        }
        // 收集的过程
        for (int row = 0, i = 0; row < 10; row++) {
            for (int col = 1; col <= array[row][0]; col++) {
                a[i++] = array[row][col];
            }
            array[row][0] = 0;		//清0,下一轮pos时还需使用
        }
    }
}

}

这篇关于基数排序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!