首页 > 编程语言 > 详细

插入排序

时间:2018-08-05 22:24:04      阅读:162      评论:0      收藏:0      [点我收藏+]
 1 #include <stdio.h>
 2 
 3 typedef int ElementType;
 4 
 5 void InsertionSort(ElementType *Array,int ArrayLen)
 6 {
 7     int i,j;
 8     ElementType ExtractElem;
 9     for(i = 1;i < ArrayLen;i ++)
10     {
11         ExtractElem = Array[i];
12         for(j = i - 1;j >= 0 && ExtractElem < Array[j];j --)
13         {
14             Array[j+1] = Array[j];
15         }
16         //Insert
17         Array[j+1] = ExtractElem;
18     }
19 }
20 
21 int main()
22 {
23     ElementType TestArray[10] = {8,9,2,4,1,2,5,9,3,7};
24     InsertionSort(TestArray,10);
25     int i;
26     for(i = 0;i < 10;i ++)
27     {
28         printf("%d ",TestArray[i]);
29     }
30     printf("\n");
31     return 0;
32 }

 

插入排序

原文:https://www.cnblogs.com/Asurudo/p/9427439.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!