• 【LeetCode】链表题总结(持续更新)


    写在前面:链表不熟,所以多做点题并总结。
    不全。

    203. 移除链表元素

    203. 移除链表元素

    /**
     * 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* removeElements(ListNode* head, int val) {
        ListNode *dummy=new ListNode(0);
        dummy->next=head;
    
        ListNode *cur=dummy;
        while(cur->next!=NULL)
        {
            if(cur->next->val==val)
            {
               ListNode *temp=cur->next;
               cur->next=cur->next->next;//跳过它
               delete temp;//删掉它
            }
            else
            {
                cur=cur->next;//留下它并往下走
            }        
        }
    
        head=dummy->next;
        return head;
        }
    };
    
    • 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
    • 33
    • 34
    • 35

    707. 设计链表(定义相关函数)

    707. 设计链表
    参考:代码随想录

    class MyLinkedList {
    public:
        struct LinkedNode
        {
            int val;
            LinkedNode* next;
            LinkedNode(int val):val(val),next(nullptr){}
        };
    
        MyLinkedList() {
            dummy=new LinkedNode(0);
            s=0;//size
        }
        
        int get(int index) {
            if(index>s-1||index<0)
            {
                return -1;
            }
    
            LinkedNode *cur=dummy->next;
            
            while(index--)
            {
                cur=cur->next;
            }
            return cur->val;
        }
        
        void addAtHead(int val) {
            LinkedNode *temp=new LinkedNode(val);
            temp->next=dummy->next;
            dummy->next=temp;
            s++;
        }
        
        void addAtTail(int val) {
        LinkedNode *tail=new LinkedNode(val);
        LinkedNode *temp=dummy;
        while(temp->next!=NULL)
        {
            temp=temp->next;
        }
        temp->next=tail;
        s++;
        }
        
        void addAtIndex(int index, int val) {
            LinkedNode *cur=new LinkedNode(val);
            LinkedNode *temp=dummy;
            if(index<=0)
            {
                cur->next=temp->next;
                dummy->next=cur;
                s++;
            }
            else if(index<=s)
            {
                while(index--)
                {
                    temp=temp->next;
                }
                cur->next=temp->next;
                temp->next=cur;
                s++;
            }
        }
        
        void deleteAtIndex(int index) {
        if(index>=0&&index<s)
        {
            LinkedNode *temp=dummy;
            while(index--)
            {
                temp=temp->next;
            }
            temp->next=temp->next->next;
            s--;
        }
        }
    
        private:
        LinkedNode *dummy;
        int s;
    };
    
    /**
     * Your MyLinkedList object will be instantiated and called as such:
     * MyLinkedList* obj = new MyLinkedList();
     * int param_1 = obj->get(index);
     * obj->addAtHead(val);
     * obj->addAtTail(val);
     * obj->addAtIndex(index,val);
     * obj->deleteAtIndex(index);
     */
    
    • 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
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95

    206. 反转链表(双指针)

    206. 反转链表

    /**
     * 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) {
        ListNode *pre=NULL;
        ListNode *cur=head;
        if(head==NULL) return NULL;
        ListNode *temp=head->next;
        while(cur!=NULL)
        {
            cur->next=pre;
            pre=cur;
            cur=temp;
            if(temp!=NULL)temp=temp->next;
        }
    
        return pre;
        }
    };
    
    • 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

    24. 两两交换链表中的节点(链表操作)

    24. 两两交换链表中的节点
    这是一道很好的理解链表相关操作的题。

    /**
     * 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* swapPairs(ListNode* head) {
        ListNode *dummy=new ListNode(0,head);
        ListNode *temp=dummy;
        while(temp!=NULL)
        {
            ListNode *a=temp->next;
            if(a==NULL) break;
            ListNode *b=a->next;
            if(b==NULL) break;
    
            temp->next=b;
            a->next=b->next;
            b->next=a;   
            temp=a;//要往前移动两格  
        }
        return dummy->next;
        }
    };
    
    • 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

    19. 删除链表的倒数第 N 个结点(双指针

    19. 删除链表的倒数第 N 个结点

    /**
     * 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* removeNthFromEnd(ListNode* head, int n) {
        ListNode *dummy=new ListNode(0);
        dummy->next=head;
    
        ListNode *a=dummy,*b=dummy;
        for(int i=0;i<=n;i++) a=a->next;
    
        while(a!=NULL)
        {
            a=a->next;
            b=b->next;
        }
    
        b->next=b->next->next;
    
        return dummy->next;
        }
    };
    
    • 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
  • 相关阅读:
    ASP.NET Core 6框架揭秘实例演示[32]:错误页面的N种呈现方式
    51种企业应用架构模式详解
    Nginx基础理论
    SQL语句where与having区别、内连接,外连接,左右外连接,交叉连接
    HarmonyOS NEXT:华为开启全新操作系统时代
    [Gitlab CI] 自动取消旧流水线
    2019史上最全java面试题题库大全800题含答案(面试宝典)
    python+vue+elementui中小银行客户信息管理系统
    JEPG Encoder IP verilog设计及实现
    DevExpress FMX Data Grid全面编辑和定制
  • 原文地址:https://blog.csdn.net/karshey/article/details/125977185