赞
踩
- class Solution {
- public:
- ListNode* reverseList(ListNode* head)
- {
- ListNode*temp;//保存cur下一个节点
- ListNode*cur=head;
- ListNode*pre=NULL;
- while(cur)
- {
- temp=cur->next;// 保存一下 cur的下一个节点,因为接下来要改变cur->next
- cur->next=pre;//翻转
- //更新pre和cur
- pre=cur;
- cur=temp;
- }
- return pre;
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。