错误程序 有关链表的 待修改

时间:2014-05-13 04:59:42
【文件属性】:

文件名称:错误程序 有关链表的 待修改

文件大小:4KB

文件格式:TXT

更新时间:2014-05-13 04:59:42

链表的 处理

typedef struct Node{ int value; Node * next; }Node; void sort_n( Node *head,int flog){ int i=0,j=-1,t=-1; Node *p; Node *list[10]; for (i=0;i<10;i++) { list[i]=(Node* )malloc (sizeof(Node )); list[i]->next=NULL; } p=head->next->next; i=0; while (i!=10) { while ((p->value)>=0) { if (flog ==1)


网友评论