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

冒泡排序

时间:2020-07-22 11:34:29      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:stat   pre   i+1   span   out   int   nbsp   sys   system   

 2 
 3 public class MyBubbleSort {
 4     public static void main(String[] args) {
 5         int num[] = {10,8,33,54,1,6,12,43,32,27};
 6         bubbleSort(num);
 7         for (int i = 0; i < num.length; i++) {
 8             System.out.print(num[i] + " ");
 9         }
10     }
11 
12     private static void bubbleSort(int[]num){
13         for (int i = 0; i < num.length ; i++) {
14             for (int j = i+1; j < num.length ; j++) {
15                 if (num[i]>num[j]){
16                     int temp = num[i];
17                     num[i] = num[j];
18                     num[j] = temp;
19                 }
20             }
21         }
22     }
23 }

 

冒泡排序

标签:stat   pre   i+1   span   out   int   nbsp   sys   system   

原文地址:https://www.cnblogs.com/zz-1120-wtenlb/p/13358957.html

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