码迷,mamicode.com
首页 > 编程语言 > 详细

交换排序---冒泡排序

时间:2018-11-17 16:12:21      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:pre   bsp   style   比较   temp   sort   col   多少   div   

 

 

 1     //冒泡排序
 2     /**
 3      * 5,8,3,15,14,68,17
 4      * 
 5      * @param arr
 6      */
 7     public static void bubbleSort(int[] arr){
 8         //控制比较多少轮
 9         for(int i=0;i<arr.length-1;i++){
10             for(int j=0;j<arr.length-1-i;j++){
11                 if(arr[j]>arr[j+1]){
12                     int temp=arr[j];
13                     arr[j]=arr[j+1];
14                     arr[j+1]=temp;
15                 }
16             }
17         }
18     }

 

交换排序---冒泡排序

标签:pre   bsp   style   比较   temp   sort   col   多少   div   

原文地址:https://www.cnblogs.com/axu521/p/9973832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!