- // 李煌排序算法的算法时间复杂度为:o(a.length+fanwei+Lhm).
- // 空间复杂度为o((fanwei+Lhm)*sizeof(int))
- public class Vpx {
- public static int[][] LiHuang_Sort(int []a,int Lhm, int fanwei) {
- int i,j,L,h;
- int [][]ne=new int [fanwei/Lhm+1][Lhm];
- for(i=0;i<a.length;i++)
- {
- h=a[i]/Lhm;
- L=a[i]%Lhm;
- ++ne[h][L];
- }
- return ne;
- }
- }
- // 李煌排序算法的算法时间复杂度为:o(a.length+fanwei+1).
- // 空间复杂度为o((fanwei+1)*sizeof(int))
- public class Vpx {
- public static int[] LiHuang_Sort(int []a,int fanwei) {
- int i,h;
- int []ne=new int [fanwei+1];
- for(i=0;i<a.length;i++)
- {
- h=a[i];
- ++ne[h];
- }
- return ne;
- }
- }