题解 | #反转链表#(空间复杂度为O(2))
反转链表
https://www.nowcoder.com/practice/75e878df47f24fdc9dc3e400ec6058ca
class Solution {
public:
ListNode* ReverseList(ListNode* pHead) {
if(pHead==NULL)
return NULL;
ListNode* temp=pHead->next;
ListNode* p=pHead;
while(temp!=NULL){
pHead->next=temp->next;
temp->next=p;
p=temp;
temp=pHead->next;
}
return p;
}
};