leetcode 206 反转链表

简介: leetcode 206 反转链表

反转链表

4a7c4c43666e448c80d7f7e08294532d.png


自己写的版本

处理分四种类型

  • 链表为空
  • 链表长度为1
  • 链表长度为2
  • 链表大于等于三
#include <iostream>
#include <vector>
#include<algorithm> 
using namespace std;
struct ListNode {
   int val;
   ListNode *next;
   ListNode() : val(0), next(nullptr) {}
   ListNode(int x) : val(x), next(nullptr) {}
   ListNode(int x, ListNode *next) : val(x), next(next) {}
};
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode *cur ;
        ListNode* temp1, * temp2 ;
        if(head == nullptr || head->next == nullptr) return head;//处理链表为空或者长度为1
        if(head->next->next == nullptr)//处理链表长度为2
        {
            temp1 = head;
            temp2 = head->next;
            temp2->next = temp1;
            temp1->next = nullptr;
            return temp2;
        }
    //处理链表长度为3及其以上
        temp1 = head;
        cur = temp1->next;
        temp2 = cur->next;
        while (temp2 != nullptr)
        {
            cur->next = temp1;
            if (temp1 == head)
            {
                temp1->next = nullptr;
                temp1 = cur;
            }     
            else temp1 = cur;
            cur = temp2;
            if(cur->next != nullptr) temp2 = cur->next;//检查链表是否到底
            else
            {
                cur->next = temp1;
                break;
            }
        }
        return cur;
    }
};
int main()
{
    vector<int> head = { 1,2,3,4,5,6 };
    ListNode* head_test = new ListNode(0);
    ListNode* test  , *cur = head_test;
    Solution  a;
    for (int i = 0; i < head.size(); i++)
    {
       ListNode* temp = new ListNode(head[i]);
       cur->next = temp;
       cur = cur->next;
    }
    cur->next = nullptr;
    cur = head_test;
    cout << "cur list" << endl;
    while (cur->next != nullptr)
    {
        cout << cur->val << ' ';
        cur = cur->next;
    }
    cout << cur->val << endl;
    test = a.reverseList(head_test->next);
    while (test->next != nullptr)
    {
        cout << test->val << ' ';
        test = test->next;
    }
    cout << test->val << ' ';
  return 0;
}

双指针法

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode *cur ;
        ListNode* temp1, * temp2 ;
        cur = head;
        temp1 = nullptr;
        while (cur)
        {
            temp2 = cur->next;
            cur->next = temp1;
            temp1 = cur;
            cur = temp2;
        }
        return temp1;
    }
};

递归法

class Solution {
public:
    ListNode* reverse(ListNode *pre , ListNode * cur) {
        if (cur == nullptr)return pre;
        ListNode* temp = cur->next;
        cur->next = pre;
        return reverse(cur , temp);
    }
    ListNode* reverseList(ListNode* head) {
        return reverse(nullptr , head);
    }
};

二刷

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if(head == nullptr) return head;
        ListNode *pre = nullptr;
        ListNode *cur = head;
        ListNode *cur_next = cur->next;
        while(cur != nullptr)
        {
            cur_next = cur->next;
            cur->next = pre;
            pre = cur;
            cur = cur_next;
        }
        return pre;
    }
};
相关文章
|
3月前
【力扣】-- 移除链表元素
【力扣】-- 移除链表元素
42 1
|
3月前
Leetcode第21题(合并两个有序链表)
这篇文章介绍了如何使用非递归和递归方法解决LeetCode第21题,即合并两个有序链表的问题。
56 0
Leetcode第21题(合并两个有序链表)
|
3月前
LeetCode第二十四题(两两交换链表中的节点)
这篇文章介绍了LeetCode第24题的解法,即如何通过使用三个指针(preNode, curNode, curNextNode)来两两交换链表中的节点,并提供了详细的代码实现。
32 0
LeetCode第二十四题(两两交换链表中的节点)
|
3月前
Leetcode第十九题(删除链表的倒数第N个节点)
LeetCode第19题要求删除链表的倒数第N个节点,可以通过快慢指针法在一次遍历中实现。
49 0
Leetcode第十九题(删除链表的倒数第N个节点)
|
3月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
108 0
|
3月前
【LeetCode 10】142. 环形链表 II
【LeetCode 10】142. 环形链表 II
26 0
|
3月前
【LeetCode 09】19 删除链表的倒数第 N 个结点
【LeetCode 09】19 删除链表的倒数第 N 个结点
21 0
|
3月前
【LeetCode 08】206 反转链表
【LeetCode 08】206 反转链表
16 0
|
3月前
【LeetCode 06】203.移除链表元素
【LeetCode 06】203.移除链表元素
37 0
|
5月前
|
算法
LeetCode第24题两两交换链表中的节点
这篇文章介绍了LeetCode第24题"两两交换链表中的节点"的解题方法,通过使用虚拟节点和前驱节点技巧,实现了链表中相邻节点的交换。
LeetCode第24题两两交换链表中的节点