码迷,mamicode.com
首页 > 编程语言 > 详细

基数排序

时间:2018-05-27 14:45:00      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:array   string   图片   opened   length   IV   spl   dig   str   

技术分享图片
 /**
     * 基数排序
     */
    @Test
    public void RadioSort(){
            int[] array = {123,345,5555,66666,764,12,33,455};
            int maxLength = maxLength(array);
            int[] newArray = sortCore(array,0,maxLength);
            System.out.println(Arrays.toString(newArray));
    }

    public int[] sortCore(int[] array,int dig,int maxLength){
        if(dig>=maxLength){
            return array;
        }
        final int radix=10;
        int arrayLength = array.length;
        int[] count=new int[radix];
        int[] bucket = new int[arrayLength];

        for(int i=0;i<array.length;i++){
            count[getDigit(array[i],dig)]++;
        }

        for (int i=1;i<radix;i++){
            count[i]=count[i]+count[i-1];
        }

        for (int i=arrayLength-1;i>=0;i--){
            int num=array[i];
            int d=getDigit(num,dig);
            bucket[count[d]-1]=num;
            count[d]--;
        }
        return sortCore(bucket,dig+1,maxLength);
    }

    public int maxLength(int[] array){
        int maxLength = 0;
        for (int i=0;i<array.length;i++){
            int currentLength =length(array[i]);
            if(maxLength<currentLength){
                maxLength=currentLength;
            }
        }
        return maxLength;
    }

    public int length(int num){
        return String.valueOf(num).length();
    }

    public  int getDigit(int x,int d){
        int[] a={ 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000 };
        return ((x/a[d])%10);
    }
View Code

 

基数排序

标签:array   string   图片   opened   length   IV   spl   dig   str   

原文地址:https://www.cnblogs.com/nihaofenghao/p/9095888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!