struct ListNode* ReverseList(struct ListNode* pHead ) { struct ListNode *s,*t; t=s=NULL; if(pHead==NULL) return NULL; while(pHead->next!=NULL){ t=pHead->next; //保存下一个节点 pHead->next=s; //让当前节点指向上一个节点 s=pHead; //保存这一个节点 pHead=t; //节点后...