LeetCode-206. Reverse Linked List(反转链表)

不羁的心 提交于 2020-03-03 08:07:06

反转链表

在这里插入图片描述

Reverse Linked List

在这里插入图片描述

方法一:迭代

/**
https://leetcode-cn.com/problems/reverse-linked-list/ * 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) {
        ListNode* cur = NULL;
        while (head) {
            ListNode* temp = cur;
            cur = head;
            head = head->next;
            cur->next = temp;
        }

        return cur;
    }
};

方法二:递归

/**
https://leetcode-cn.com/problems/reverse-linked-list/ * 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 == NULL || head->next == NULL) {
            return head;
        }
        ListNode* cur = reverseList(head->next);
        head->next->next = head;
        head->next = NULL;
        return cur;
    }
};
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!