首页 > 代码库 > java数组--冒泡排序
java数组--冒泡排序
1 package demo; 2 3 import java.util.Arrays; 4 5 public class Demo02 { 6 public static void main(String[] args) { 7 int[] arr = new int[10]; 8 for(int i=0; i<arr.length; i++){ 9 arr[i] = (int) (Math.random()*100); 10 } 11 System.out.println("冒泡排序前:"); 12 System.out.println("第"+(0)+"次:"+Arrays.toString(arr)); 13 14 bubbleSort(arr); 15 System.out.println("冒泡排序前:"); 16 System.out.println("第"+(0)+"次:"+Arrays.toString(arr)); 17 } 18 /* 19 * 冒泡排序 20 */ 21 public static void bubbleSort(int a[]) { 22 for (int i = 0; i < a.length - 1; i++) { 23 for (int j = 0; j < a.length - 1; j++) { 24 if (a[j] > a[j + 1]) { 25 int temp = a[j]; 26 a[j] = a[j + 1]; 27 a[j + 1] = temp; 28 } 29 } 30 System.out.println("第"+(i+1)+"次:"+Arrays.toString(a)); 31 } 32 } 33 }
java数组--冒泡排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。