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

插入排序算法

时间:2020-01-11 18:33:33      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:一个   for   长度   输出   class   highlight   pre   pytho   and   

输入:n个数组成的一个序列

输出:从小到大排序好的序列

 

以下是伪代码

其中A是输入序列

A.length是A的长度

for j = 2 to A.length
    key = A[j]
    i = j - 1
    while i > 0 and A[i] > key
        A[i + 1] = A[i]
        i = i - 1
    A[i + 1] = key

  

插入排序算法

标签:一个   for   长度   输出   class   highlight   pre   pytho   and   

原文地址:https://www.cnblogs.com/gxxtsz/p/12180587.html

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