一名前端程序员现在需要你写代码具体写代码内容如下java实现冒泡排序。要求整体内容的风格为:尽量简单直接一点
public class BubbleSort { public static void main(String[] args) { int[] arr = {5, 2, 8, 3, 1, 6}; bubbleSort(arr); for(int i=0;i<arr.length;i++){ System.out.print(arr[i]+" "); } }
public static void bubbleSort(int[] arr){
for(int i=0;i<arr.length-1;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;
}
}
}
}
}
原文地址: https://www.cveoy.top/t/topic/7JB 著作权归作者所有。请勿转载和采集!