Neo's Blog

不抽象就无法深入思考
不还原就看不到本来面目!

0%

链表系列-链表反转

链表反转-题目描述

定义一个函数,输入一个链表的头结点,反转该链表并输出反转后链表的头结点。

思考题:

请同时实现迭代版本和递归版本。
样例
输入:1->2->3->4->5->NULL

输出:5->4->3->2->1->NULL

链表反转-总体思路

链表反转-非递归版代码实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:

ListNode* reverseList(ListNode* head) {
if (!head) return head;

ListNode* pre = NULL;
while (head) {
auto t = head->next;
head->next = pre;
pre = head;
head = t;
}

return pre;
}
};

链表反转-递归版代码实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
public:
ListNode* reverseList(ListNode* head) {
if (!head) return NULL;
//base
if (!head->next) return head;

//对子问题进行递归-当前节点的下一个
auto nh = reverseList(head->next);
head->next->next = head;
head->next = NULL;
return nh;
}
};
你的支持是我坚持的最大动力!