基数排序(桶排序)(Java)

核心code:

此代码仅为处理正数。

处理负数时正负分开处理即可。

public class bucketsort {
    public static void main(String[] args) {
        int[] a = {1, 4, 3, 5, 2, 7, 12, 45, 13, 754, 124, 754, 6, 32, 45, 1};
        bucketsort bucketsort = new bucketsort();
        bucketsort.bucket(a);
        for (int b : a) System.out.println(b);
    }

    public void bucket(int[] a){
        int[][] buc= new int [10][a.length];
        int [] q = new int[10];
        int max = 0, maxleng = 0;
        for (int i = 0; i < a.length; i++) if(max

你可能感兴趣的:(数据结构与算法,数据结构)