前台美眉能看懂的冒泡排序
Posted 资深程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前台美眉能看懂的冒泡排序相关的知识,希望对你有一定的参考价值。
冒泡排序代码实现(java)
如下
/**
* @Version: 1.0
* @Description: 冒泡排序
*/
import com.jiajia.ArrayUtil.*; // 按包名导入
public class BubbleSortMain {
public static void main(String[] args) {
int[] arr = {2,5,1,3,8,5,7,4,3};
bubbleSort(arr);
ArrayUtil.print(arr);
}
/**
* 冒泡排序
* @param arr
*/
private static void bubbleSort(int[] arr) {
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr.length - i -1; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
}
扫码关注
以上是关于前台美眉能看懂的冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章