버킷 정렬 소스코드 import java.util.Arrays; public class test{ public static void testsort(int[] a, int maxVal) { int [] bucketArr=new int[maxVal]; //버킷사이즈에다가 0으로 초기화시켜준다. for (int i=0; i 알고리즘/정렬 2021.12.21