简单的数组排序

Posted shanshen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的数组排序相关的知识,希望对你有一定的参考价值。

1.小到大

@org.junit.Test
public void test() throws InterruptedException {
int[] num={1,6,5,2,7};
for (int i=0;i<num.length-1;i++) {
for (int j = 0; j <num.length-1; j++) {
int b = 0;
if (num[j]>num[j+1]){
b = num[j];
num[j] = num[j + 1];
num[j+ 1] = b;
}

}
}

for (int i=0;i<num.length;i++){
System.out.println(num[i]);
}

}
2.大到小
@org.junit.Test
public void test() throws InterruptedException {
int[] num={1,6,5,2,7};
for (int i=0;i<num.length-1;i++) {
for (int j = 0; j <num.length-1; j++) {
int b = 0;
if (num[j]<num[j+1]){ //这里不一样
b = num[j];
num[j] = num[j + 1];
num[j+ 1] = b;
}

}
}

for (int i=0;i<num.length;i++){
System.out.println(num[i]);
}

}










































以上是关于简单的数组排序的主要内容,如果未能解决你的问题,请参考以下文章

以下代码片段的时间复杂度是多少?

快速排序-递归实现

对数组中的字符串进行排序,使其稀疏

算法排序之堆排序

多种排序算法的思路和简单代码的实现

在第6731次释放指针后双重免费或损坏