数据结构 day6 栈+队列+二分查找+插入排序

数据结构 day6 栈+队列+二分查找+插入排序_第1张图片

 插入排序

#include 
#include
#include
int main(int argc, const char *argv[])
{
	int a[]={41,50,66,38,32,49,18};
	int n=sizeof(a)/sizeof(a[0]);
	int i,j,t;
	for(i=1;i=0;j--)
		{
			if(t
ubuntu@ubuntu:day5$ gcc homework.c
ubuntu@ubuntu:day5$ ./a.out
18  32  38  41  49  50  66  
ubuntu@ubuntu:day5$ 

你可能感兴趣的:(嵌入式学习-数据结构,数据结构,排序算法,算法)