pre指向前一节点,cur指向当前节点,temp暂存cur->next,注意返回的头结点为pre。 /* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* ReverseList(ListNode* pHead) { ListNode* pre=nullptr; ListNode* cur=pHead; whi...