2012年6月1日
摘要: void reserve(linkNode<char> *head) //头插入的逆置方法{linkNode<char> *q;q=head->next;if(head->next==NULL||head->next->next==NULL)return;elsewhile(q!=NULL&&q->next!=NULL){linkNode<char> *temp;temp=q->next;q->next=temp->next;temp->next=head->next;head-&g 阅读全文
posted @ 2012-06-01 01:19 cs_jin_scor 阅读(1042) 评论(0) 推荐(0) 编辑