标签:函数 evel array src static code 图片 download 编辑
* 编辑者:鸿灬嗳
* 实现功能: 使用冒泡排序对数组:{25,24,12,76,101,96,28} 排序。
*/
package test05;
public class BubbleSort {
public static void main(String[] args) {
int[] arr = { 25, 24, 12, 76, 101, 96, 28 };
System.out.println("冒泡排序前数组为:");
printArray(arr);
Bubble(arr);
}
public static void printArray(int[] arr) {
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
public static void Bubble(int[] arr) {
for (int i = 0,count=0; i < arr.length - 1; i++) {
for (int j = 0; j < arr.length - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
int temp;
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
count++;
System.out.println("第"+count+"次冒泡排序:");
printArray(arr);
}
}
}
运行结果:
标签:函数 evel array src static code 图片 download 编辑
原文地址:https://www.cnblogs.com/honghuoai/p/10702682.html