剑指offer---反转链表
Posted 双马尾是老公的方向盘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer---反转链表相关的知识,希望对你有一定的参考价值。
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* ReverseList(ListNode* pHead) { if(pHead==NULL) { return NULL; } ListNode* cur=NULL; ListNode* pre=NULL; ListNode* nex=NULL; cur=pHead; nex=cur->next; while(1) { if(nex==NULL) { break; } pre=cur; cur=nex; nex=nex->next; nex->next=cur; } return cur; } };
以上是关于剑指offer---反转链表的主要内容,如果未能解决你的问题,请参考以下文章