数组排序
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; } } } }
以上是关于数组排序的主要内容,如果未能解决你的问题,请参考以下文章