ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

基数排序

2022-05-04 20:01:30  阅读:136  来源: 互联网

标签:10 int max pos 基数排序 static public


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时还需使用
        }
    }
}

}

标签:10,int,max,pos,基数排序,static,public
来源: https://www.cnblogs.com/fighterk/p/16222190.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有