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

冒泡小算法1

时间:2015-11-24 14:43:37      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

                                                                     冒泡小算法1

  冒泡算法:

例题.1

import java.util.*;
public class Nixun {
    public static void main(String[] args)
    {    
        System.out.println("一维数组逆序前的结果:");
        int a[]={9,8,7,6,5,4,3,2,1};
        Arrays.sort(a);
        for(int i=0;i<a.length;i++)
        {
            System.out.print(" "+a[i]);
        }
        }

    这个是调用了java.util.*;的工具包,用了Arrays.sort(a);方法即可,其中Arrays是数组的意思,而sort是排序,分类的意思。

要调用Arrays方法必须调用工具包才能用。

当然这个题还有其他的解法。

  解法二;

public class Nixun {
    public static void main(String[] args)
    {    
        System.out.println("一维数组逆序前的结果:");
        int a[]={9,8,7,6,5,4,3,2,1};
 
        for(int i=0;i<a.length;i++)
        {
            System.out.print(" "+a[i]);
        }
        
        
        System.out.println("之后的结果是:");
        for(int j=a.length-1;j>=0;j--)
        {
            System.out.print(" "+a[j]);
        }

    例题.2

public class A {
    public static void main(String[] args)
    {
         int score[] = {67, 69, 75, 87, 89, 90, 99, 100};
         for(int i=0;i<score.length-1;i++)  //只需要比较 n-1次
         {
             for(int j=0;j<score.length-i-1;j++) //这里是区间[0······ score.length-i-1]的值比较。
             {
                 if(score[j]<score[j+1])
                 {
                     int temp;
                     temp=score[j+1];
                     score[j+1]=score[j];
                     score[j]=temp;
                 }
             }
            

          }
          System.out.println("最终结果是:");
          for(int a=0;a<score.length;a++)
          {
               System.out.print(score[a]+"\t");
          }
    
 
}
}

 

冒泡小算法1

标签:

原文地址:http://www.cnblogs.com/pwhit/p/4991320.html

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