Leetcode 206. 反转链表
Posted Howardwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 206. 反转链表相关的知识,希望对你有一定的参考价值。
题目要求:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
方法一:
class Solution {
public:
ListNode* reverseList(ListNode* head) {
if(!head) return head;
ListNode* pre = nullptr;
ListNode* cur = head;
ListNode* tmp;
while(cur) {
tmp = cur->next;
cur->next = pre;
pre = cur;
cur = tmp;
}
return pre;
}
};
使用三个指针用来保存下一个节点,当前节点 和前一个节点。
方法二:
class Solution {
public:
ListNode* reverseList(ListNode* head) {
if(!head || !head->next) return head;
ListNode* p = reverseList(head->next);
head->next->next = head;
head->next = nullptr;
return p;
}
};
递归用的很巧妙,对于链表的题目多了一种解题思路。不过要控制好边界情况。
以上是关于Leetcode 206. 反转链表的主要内容,如果未能解决你的问题,请参考以下文章
剑指offerJZ15——反转链表。leetcode206.反转链表