`
karl
  • 浏览: 2950 次
  • 来自: ...
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

chapter 2

J# 
阅读更多

insertion sorting:

 
Insertion sort is an efficient algorithm for sorting a small number of
elements. Insertion sort works the way many people sort a hand of playing cards

INSERTION-SORT(A)
1 for j ← 2 to length[A]
2      do key ← A[j]
3      ▹ Insert A[j] into the sorted sequence A[1  j - 1].
4        i ← j - 1
5         while i > 0 and A[i] > key
6               do A[i + 1] ← A[i]
7                i ← i - 1
8        A[i + 1] ← key
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics