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

关于常见的排序算法

时间:2017-11-08 14:56:42      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:最大   对比   冒泡排序   length   bsp   反序   []   常见   step   

1、冒泡排序

  关于冒泡排序,其实就是相邻两两对比,正序反序,大的(小的)往后挪一个位置,第一遍最大(最小)肯定会在最后了,

  然后第二次排序不计最后一个元素进行重排,然后以此类推

 

 public static void main(String[] args){

        int score[] = {3,5,8,3,5,6,9,7,4,1,5,98,7,6,12,7,45,56,5};
        for ( int i=0;i<score.length-1;i++) {
            for (int j=0;j<score.length-i-1;j++){
                if(score[j]>score[j+1]){
                    int temp =score[j];
                    score[j]=score[j+1];
                    score[j+1]=temp;
                }
            }
        }

        for ( int x: score) {
            System.out.println(x);

        }

    }

  2、选择排序

  关于选择排序,选择排序是怎样的,就是拿第一个,跟后面23456挨个去对比,如果第二个比第一个大,哎,记住第二个的下标,拿第二个跟第三个比去,以此类推,记住最大或最小的下标,然后跟第一个互换。每次第一个、第二个.....就是参与排序的里面总是最大或者最小的了

public static void main(String[] args) {
        int[] score={3,5,8,3,5,6,9,7,4,1,5,98,7,6,12,7,45,56,5};
        for(int i = 0; i < score.length - 1; i++) {
            int step = i;
            for(int j = step + 1; j < score.length; j++){
                if(score[j] > score[step]){
                    step = j;
                }
            }
            if(i != step){
                int temp = score[i];
                score[i] = score[step];
                score[step] = temp;
            }
        }
        for(int x:score){
            System.out.println(x);
        }
    }

  折半查找:

 

关于常见的排序算法

标签:最大   对比   冒泡排序   length   bsp   反序   []   常见   step   

原文地址:http://www.cnblogs.com/lewskay/p/7803465.html

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