zoukankan      html  css  js  c++  java
  • 冒泡小算法1

                                                                         冒泡小算法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]+" ");
              }
        
     
    }
    }

    编程是一门艺术,要爱就要深爱。
  • 相关阅读:
    记住一些英语谚语、格言或名人名言
    *英语词汇经济危机
    Windows XP Home Edition 中文版 安装IIS
    *英语词汇低碳
    14个优化网站性能提高网站访问速度技巧
    日全食 欧盟一体化 词汇
    英语词汇索马里海盗事件
    Ant实用脚本
    nginx配置数据结构及合并过程
    关于网页皮肤切换
  • 原文地址:https://www.cnblogs.com/pwhit/p/4991320.html
Copyright © 2011-2022 走看看