码迷,mamicode.com
首页 > 其他好文 > 详细

HW6.18

时间:2016-08-26 21:26:38      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         double[] array = {6.0, 4.4, 1.9, 2.9, 3.4, 2.9, 3.5};
 6         bubbleSort(array);
 7         for(double i: array)
 8             System.out.print(i + " ");
 9     }
10 
11     public static void bubbleSort(double[] array)
12     {
13         double temp;
14         for(int i = array.length - 1; i > 0; i--)
15         {
16             for(int j = 0; j < i; j++)
17                 if(array[j + 1] < array[j])
18                 {
19                     temp = array[j + 1];
20                     array[j + 1] = array[j];
21                     array[j] = temp;
22                 }
23         }
24     }
25 }

 

HW6.18

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5811726.html

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