- 博客(3)
- 收藏
- 关注
原创 逆序建链表
#include #include struct node{ int date; struct node *next;};struct node *head,*q;int main(){ head=(struct node *)malloc(sizeof(struct node )); head->next=NULL;
2014-09-21 19:52:54 359
原创 选择法语冒泡法
#include #include void xuanze(int *a,int n)/*任意输入n个数,将这n个数从头到小排序8/{ int i,j,temp; for(i=0;i { for(j=i+1;j if(a[i] { temp=a[i];
2014-08-16 10:12:51 406
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人