摘要: 1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node *head){ if(head->next==NULL||head->next->next==NULL) return head->next; node *p=head->next,*mid=head->next; ... 阅读全文
posted @ 2014-04-29 22:13 yexuannan 阅读(234) 评论(0) 推荐(0) 编辑