码迷,mamicode.com
首页 > 其他好文 > 详细

插入排序

时间:2014-09-28 13:25:12      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   c   

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 void insert_sort(int data[], int);
 5 
 6 int main(int argc, char *argv[])
 7 {
 8     int i;
 9     int data[6] = {5,3,7,10,9,6};
10 
11     insert_sort(data, 6);
12 
13     for ( i = 0; i < 6; ++i)
14     {
15         printf("%d ", data[i]);
16     }
17 
18     printf("\n");
19     return 0;
20 }
21 
22 void insert_sort(int data[], int num)
23 {
24     int i, j;
25     
26     for (i = 1; i < num; ++i)
27     {
28         int r = data[i];
29         j = i;
30 
31         while(j > 0 && data[j - 1] > r)
32         {
33             data[j] = data[j - 1];
34             j--;
35         }
36 /*
37         for (j = i; j >= 0; --j)
38         {
39             if (data[j - 1] > r)
40             {
41                 data[j] = data[j - 1];
42             }
43             else
44                 break;
45         }
46  */
47         data[j] = r;
48     }
49 }

 

插入排序

标签:style   blog   color   io   ar   for   sp   div   c   

原文地址:http://www.cnblogs.com/yyxayz/p/3997960.html

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