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

折半插入排序

时间:2017-12-30 22:35:05      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:class   pos   ati   bin   color   []   insert   nbsp   i++   

 

    public static int[] BInsertSort(int[] arr){
        for(int i=1;i<arr.length;i++){
            int temp = arr[i];
            int j;
            int low = 0, high = i-1;
            while(low <= high){
                int m = (low + high)/2;
                if(temp < arr[m]){
                    high = m-1;  
                }else{
                    low = m+1;  
                }
            }
            for(j=i-1;j>=high+1;j--){
                arr[j+1] = arr[j];
            }
            arr[j+1] = temp;
        }
        return arr;
    }

 

折半插入排序

标签:class   pos   ati   bin   color   []   insert   nbsp   i++   

原文地址:https://www.cnblogs.com/weishao-lsv/p/8151278.html

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