首页 > 编程语言 > 详细

排序算法 -------未完待续

时间:2019-06-13 16:46:55      阅读:99      评论:0      收藏:0      [点我收藏+]

 排序算法    

  

直接插入排序 

package cn.suanfa;


/**
 * 直接插入排序
 * @author lqf
 *
 */
public class insert {
    public static void  main(String[] args) {
        int a[]= {3,-1,9,0,1,4,4,1};
            
           new insert().insertSort(a);
           
           for (int i : a) {
            System.out.print(i+ " ");
        }
    }
    
    public void insertSort(int[]a){
        int j; 
        for(int i=1; i<a.length;i++) {
             
              int temp = a[i];
                // 以此和前面的数据比较比较       移位操作   
                 for( j=i-1 ; j>=0&&a[j]>temp;j--) {
                     //移一位
                     a[j+1] = a[j];
                    
                }
                 //           插入temp
                 //System.out.println(j+1);
                a[j+1] = temp;
                
                // 每次执行一遍  打印一遍
                   for (int k : a) {
                    System.out.print(k+ " ");
                    
                }
                   System.out.println();
         }     
    }
}

   平均时间   n^2      最好时间    n             最差时间   n^2   

排序算法 -------未完待续

原文:https://www.cnblogs.com/qinning/p/11017036.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!