qq_MEGALOVANIA_0
2018-12-06 08:06:46浏览 2286
import java.util.Arrays;
public class Sort9 {
public static void sort(int[] A){
int[] B = new int[A.length];
int max = A[0];
for(int i=1;i<A.length;i++){
if(A[i]>max){
max = A[i];
}
}
for(int i=0;i<B.length;i++){
B[i]=A[i];
}
while(max>0){
for(int i=1;i<B.length;i++){
for(int j=i;j>0;j--){
if(B[j]%10<B[j-1]%10){
Swap.swap(B,j,j-1);
Swap.swap(A,j,j-1);
}
}
}
for(int i=0;i<B.length;i++){
B[i]=B[i]/10;
}
max=max/10;
System.out.println("Stage:"+Arrays.toString(A));
}
}
}