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

插入排序

时间:2020-02-11 09:35:42      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:com   插入排序   str   sort   code   序列   static   直接插入   --   

1.什么是直接插入排序
依次将待排序中的数字直接插入到已按从小到大(或者从大到小)排好的序列中去,直到插完所有数字为止。

2.图示表示
技术图片

3.代码实现


public static void insertSort(int[] array) {   
        for (int bound = 1; bound < array.length; bound++) {
            int tmp = array[bound];
            int cur = bound - 1;     //[1,bound)为排序好的,[bound,array.length)是待排序的
            for (cur = bound - 1; cur >= 0; cur--) {
                if (array[cur] > tmp) {
                    array[cur + 1] = array[cur];
                } else {
                    break;
                }
            }
            array[cur + 1] = tmp;
        }
    }

插入排序

标签:com   插入排序   str   sort   code   序列   static   直接插入   --   

原文地址:https://blog.51cto.com/14298563/2470120

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