标签:链表 null class ++ 使用 next void 练习 code
void D(PBook pHead) { PBook p,q,s; p=pHead->next->next; q=p->next; s=q->next; pHead->next->next=NULL; p->next=pHead->next; q->next=p; p=q; q=s; while(q->next!=NULL) { s=q->next; q->next=p; p=q; q=s; } q->next=p; pHead->next=q; }
标签:链表 null class ++ 使用 next void 练习 code
原文地址:https://www.cnblogs.com/tsj816523/p/11631171.html