数组排序

Posted 北极以北

tags:

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

public static void bubbleSort(int[] numbers){
       int temp;    //记录临时中间值
        int size = numbers.length;    //数组大小
        for(int i = 0;i<size-1;i++){
            for(int j =i+1;j<size;j++){
                if(numbers[i]<numbers[j]){
                    temp = numbers[i];
                    numbers[i]=numbers[j];
                    numbers[j]=temp; 
                }
            }
        }
    }

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

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

快速排序-递归实现

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

算法排序之堆排序

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

VSCode自定义代码片段—— 数组的响应式方法