首页 相关文章 C语言基础:插入排序法

C语言基础:插入排序法

用c实现的插入排序法,先输入10个数,然后利用插入排序法进行排序,将结果输出。算法简单,可供初学者学习。 !-- frame contents -- !-- /frame contents -- #include "stdio.h"
   #include "conio.h"
   main()
   {
   int a[10],r[11];
   int *p;
   int i,j;
   for(i=0;i10;i++)
   {
   p=&a[i];
   printf("please scan the NO:
   %d",i);<...[ 查看全文 ]

2016-02-19 标签:

C语言基础:插入排序法的相关文章

手机页面
收藏网站 回到头部