第一印象是使用链表头插法 class Solution { public: ListNode* ReverseList(ListNode* pHead) { if(pHead==NULL || pHead->next==NULL) return pHead; ListNode *p = pHead; ListNode *s = nullptr; ListNode ...