当前位置:   article > 正文

LeetCode 最常见100道题_leetcode题库

leetcode题库

前言

正文

一、反转链表

1. 题目

在这里插入图片描述

2. 解答

a. 迭代法:

答案
/**
 * 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||head->next==nullptr)
            return head;
        ListNode* node = head;
        ListNode* next = nullptr;
        ListNode* pre = nullptr;
        ListNode* newHead = nullptr;//1. 比较标准的迭代四件套
        while(node)
        {
            next = node->next;//2. 获取下一个节点
            node->next = pre;//3. 直接先进行反转
            pre = node;//4. 反转后,进行赋值
            node = next;
            if (node == nullptr)//5. 赋值后,进行判断
                newHead = pre;
        }
        return newHead;
    }

};
  • 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
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

b. 递归法:

答案
/**
 * 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 == NULL || head->next == NULL)
        {
            return head;
        }

        ListNode* result = reverseList(head->next);//1. 想象成只有三个节点,result接下去的就是head->next的所有节点
        head->next->next = head;//2. 将head->next 的next 指向head,这就是所谓的反转操作
        head->next = NULL;  //3. 而这一步则是将所有head->next
        return result;
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

总结

待更~

参考

  1. 剑指Offer
  2. Leetcode 100题
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/685081
推荐阅读
相关标签
  

闽ICP备14008679号