插入排序 (Insert Sort)

本文通过动态图片和伪代码详细解释了插入排序的工作原理及步骤。插入排序是一种简单的排序算法,通过在已排序列表中逐个比较并放置未排序元素来工作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Wiki : http://en.wikipedia.org/wiki/Insertion_sort


看看下面的动态图片, 就明白插入排序是怎么回事了:

WiKi上给出的伪代码:

Pseudocode of the complete algorithm follows, where the arrays arezero-based:

 // The values in A[i] are checked in-order, starting at the second one
 for i ← 1 to i ← length(A)-1
   {
     // at the start of the iteration, A[0..i-1] are in sorted order
     // this iteration will insert A[i] into that sorted order
 
     // save A[i], the value that will be inserted into the array on this iteration
     valueToInsert ← A[i]
     // now mark position i as the hole; A[i]=A[holePos] is now empty
     holePos ← i
     // keep moving the hole down until the valueToInsert is larger than 
     // what's just below the hole or the hole has reached the beginning of the array
     while holePos > 0 and valueToInsert < A[holePos - 1]
       { //value to insert doesn't belong where the hole currently is, so shift 
         A[holePos] ← A[holePos - 1] //shift the larger value up
         holePos ← holePos - 1       //move the hole position down
       }
     // hole is in the right position, so put valueToInsert into the hole
     A[holePos] ← valueToInsert
     // A[0..i] are now in sorted order
   }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值