赞
踩
执行结果:
解题思路:
【206.反转链表-哔哩哔哩】 https://b23.tv/2Lb5qG6
语言:C++
class Solution { public: ListNode* reverseList(ListNode* head) { if(head==NULL ||head->next==NULL){ return head; } ListNode*l=head; ListNode*r=head->next; head->next=NULL; while(r){ ListNode*tmp=r->next; r->next=l; l=r; r=tmp; } return l; } };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。