【数据结构】链表经典题目

简介: 【数据结构】链表经典题目
移除链表元素

思路:先要判断这个链表是不是空链表,如果是空链表就直接返回NULL,就可以

代码:

struct ListNode* removeElements(struct ListNode* head, int val){
    if(head == NULL)
    {
        return NULL;
    }
    struct ListNode* cur = head;
    struct ListNode* newnode, *tail;
    newnode = tail = NULL;
    while(cur != NULL)
    {
        if(cur->val != val)
        {
            if(tail == NULL)
            {
                newnode = tail = cur;
            }
            else 
            {
                tail->next = cur;
                tail = tail->next;
            }
            cur = cur->next;
        }
        else
        {
            struct ListNode* next = cur->next;
            free(cur);
            cur = next;
        }
    }
    if(tail)
    {
        tail->next = NULL;
    }
    return newnode;
}

注意:这个题最后需要注意的是tail的下一个应该也是NULL,否则就有可能将最后一个链表连接。

合并两个有序链表

思路:重新用一个新的链表头来表示节点,如果小于的数就入到链表当中。

代码:

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
    if(list1 == NULL) {
        return list2;
    }
    if(list2 == NULL) {
        return list1;
    }
    struct ListNode* head, *tail;
    head = tail = NULL;
    while(list1 && list2) {
        if(list1->val < list2->val) {
            if(tail == NULL) {
                head = tail = list1;
            }else {
                tail->next = list1;
                tail = tail->next;
            }
            list1 = list1->next;
        }else {
            if(tail == NULL) {
                head = tail = list2;
            }else {
                tail->next = list2;
                tail = tail->next;
            }
            list2 = list2->next;
        }
    }
    if(list1) {
        tail->next = list1;
    }
    if(list2) {
        tail->next = list2;
    }
    return head;
}
链表的中间节点

思路:这个题目只需要根据速度差,一个指针的速度是另一个指针速度的二倍,当快的指针到达终点的时候,慢指针刚好到达中间节点。

代码:

struct ListNode* middleNode(struct ListNode* head){
    struct ListNode *fast, *slow;
    fast = slow = head;
    while(fast && fast->next) {
        slow = slow->next;
        fast = fast->next->next;
    }
    return slow;
}
链表中的倒数第k个结点

思路:先让快的链表走k步,然后两个指针一起往后移动,如果快的指针到达最后,慢的指针就是最后的结果。

代码:

struct ListNode* FindKthToTail(struct ListNode* pListHead, int k ) {
   // write code here
   struct ListNode *fast, *slow;
   fast = slow = pListHead;
   while(k) {
       if(fast == NULL) {
           return NULL;
       }
       fast = fast->next;
       k --;
   }
   while(fast) {
       fast = fast->next;
       slow = slow->next;
   }
   return slow;
}
反转链表

代码:

struct ListNode* reverseList(struct ListNode* head){
    if(head == NULL) {
        return NULL;
    }
    struct ListNode* n1, *n2, *n3;
    n1 = NULL;
    n2 = head;
    n3 = n2->next;
    while(n2) {
        n2->next = n1;
        n1 = n2;
        n2 = n3;
        if(n3) {
            n3 = n3->next;
        }
    }
    return n1;
}
链表分割

对于最后一个数字,还有不同的情况考虑:

代码:

class Partition {
public:
    ListNode* partition(ListNode* pHead, int x) {
        // write code here
        struct ListNode* lessHead, *lessTail, *greaterHead, *greaterTail;
        lessHead = lessTail = (struct ListNode*)malloc(sizeof(struct ListNode));
        greaterHead = greaterTail = (struct ListNode*)malloc(sizeof(struct ListNode));
        lessTail->next = greaterTail->next = NULL;
        struct ListNode* cur = pHead;
        while(cur) {
            if(cur->val < x) {
                lessTail->next = cur;
                lessTail = lessTail->next;
            }else {
                greaterTail->next = cur;
                greaterTail = greaterTail->next;
            }
            cur = cur->next;
        }
        lessTail->next = greaterHead->next;
        greaterTail->next = NULL;
        pHead = lessHead->next;
        free(lessHead);
        free(greaterHead);
        return pHead;
    }
};
链表的回文结构

思路:直接找到中间节点,然后反转中间节点到最后的链表就可以。

代码:

struct ListNode* findMid(struct ListNode* A) {
    struct ListNode* slow = A, *fast = A;
    while(fast && fast->next) {
        slow = slow->next;
        fast = fast->next->next;
    }
    return slow;
}
struct ListNode* reverse(struct ListNode* mid) {
    struct ListNode* n1 = NULL, *n2 = mid, *n3 = n2->next;
    while(n2) {
        n2->next = n1;
        n1 = n2;
        n2 = n3;
        if(n3) {
            n3 = n3->next;
        }
    }
    return n1;
}
class PalindromeList {
public:
    bool chkPalindrome(ListNode* A) {
        // write code here
        struct ListNode* mid = findMid(A);
        struct ListNode* rhead = reverse(mid);
        while(A && rhead) {
            if(A->val != rhead->val) {
                return false;
            }
            A = A->next;
            rhead = rhead->next;
        }
        return true;
    }
};
相交链表

思路:找到两个其中长的一个链表,然后走差值步,一起走看是否有相等的地址。

代码:

struct ListNode *getIntersectionNode(struct ListNode *headA, struct ListNode *headB) {
        struct ListNode* curA = headA, *curB = headB;
        int lenA = 0, lenB = 0;
      //分别找到链表A和链表B的长度
        while(curA) {
            lenA ++;
            curA = curA->next;
        }
        while(curB) {
            lenB ++;
            curB = curB->next;
        }
      //如果最后不相等,则绝对不存在公共节点
      //如果相等,则一定存在公共节点
        if(curA != curB) {
            return NULL;
        }
        int gap = abs(lenA - lenB);
      //假设A>B
        struct ListNode* LongList = headA, *ShortList = headB;
        if(lenB > lenA) {
            LongList = headB;
            ShortList = headA;
        }
        while(gap --) {
            LongList = LongList->next;
        }
        while(LongList != ShortList) {
            LongList = LongList->next;
            ShortList = ShortList->next;
        }
        return LongList;
}
环形链表

思路:两个指针,一个指针每次跑一步,另一个指针每次跑两步,如果有环两个指针肯定能够相遇。

代码:

bool hasCycle(struct ListNode *head) {
    struct ListNode* slow = head, *fast = head;
    while(fast && fast->next) {
        slow = slow->next;
        fast = fast->next->next;
        if(slow == fast) {
            return true;
        }
    }
    return false;
}

环形链表II(找到如环的节点)

结论:让一个指针从链表的起始位置开始遍历链表,同时让一个指针从判环相遇点的位置开始绕环运行,两个指针都是每次均走一步,最终肯定会在入口点的位置相遇。

代码:

struct ListNode *detectCycle(struct ListNode *head) {
    struct ListNode* slow = head, *fast = head;
    while(fast && fast->next) {
        slow = slow->next;
        fast = fast->next->next;
        if(slow == fast) {
            struct ListNode* meet = slow;
            while(head != meet) {
                head = head->next;
                meet = meet->next;
            }
            return head;
        }
    }
    return NULL;
}
复制带随机指针的链表

思路:

  1. 拷贝节点在源节点的后面

代码实现:

struct Node* copyRandomList(struct Node* head) {
  struct Node* cur = head;
    while(cur) {
        struct Node* next = cur->next;
        struct Node* copy = (struct Node*)malloc(sizeof(struct Node));
        copy->val = cur->val;
        cur->next = copy;
        copy->next = next;
        cur = next;
    }
}
  1. 设置拷贝节点的random

代码实现:

struct Node* copyRandomList(struct Node* head) {
  struct Node* cur = head;
    while(cur) {
        struct Node* next = cur->next;
        struct Node* copy = (struct Node*)malloc(sizeof(struct Node));
        copy->val = cur->val;
        cur->next = copy;
        copy->next = next;
        cur = next;
    }
    //设置拷贝节点的random
    cur = head;
    while(cur) {
        struct Node* copy = cur->next;
        if(cur->next == NULL) {
            copy->random = NULL;
        }else {
            copy->random = cur->random->next;
        }
        cur = cur->next->next;
    }
}
  1. 拷贝节点解下来,连接组成拷贝链表

代码实现:

struct Node* copyRandomList(struct Node* head) {
  struct Node* cur = head;
    while(cur) {
        struct Node* next = cur->next;
        struct Node* copy = (struct Node*)malloc(sizeof(struct Node));
        copy->val = cur->val;
        cur->next = copy;
        copy->next = next;
        cur = next;
    }
    cur = head;
    while(cur) {
        struct Node* copy = cur->next;
        if(cur->random == NULL) {
            copy->random = NULL;
        }else {
            copy->random = cur->random->next;
        }
        cur = cur->next->next;
    }
    cur = head;
    struct Node* copyHead = NULL, *copyTail = NULL;
    while(cur) {
        struct Node* copy = cur->next;
        struct Node* next = copy->next;
        cur->next = next;
        if(copyTail == NULL) {
            copyHead = copyTail = copy;
        }else {
            copyTail->next = copy;
            copyTail = copyTail->next;
        }
        cur = next;
    }
    return copyHead;
}
相关文章
|
2月前
|
存储 算法 Perl
数据结构实验之链表
本实验旨在掌握线性表中元素的前驱、后续概念及链表的建立、插入、删除等算法,并分析时间复杂度,理解链表特点。实验内容包括循环链表应用(约瑟夫回环问题)、删除单链表中重复节点及双向循环链表的设计与实现。通过编程实践,加深对链表数据结构的理解和应用能力。
64 4
|
8天前
|
数据库
数据结构中二叉树,哈希表,顺序表,链表的比较补充
二叉搜索树,哈希表,顺序表,链表的特点的比较
数据结构中二叉树,哈希表,顺序表,链表的比较补充
|
2月前
|
存储 缓存 算法
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式
在C语言中,数据结构是构建高效程序的基石。本文探讨了数组、链表、栈、队列、树和图等常见数据结构的特点、应用及实现方式,强调了合理选择数据结构的重要性,并通过案例分析展示了其在实际项目中的应用,旨在帮助读者提升编程能力。
68 5
|
2月前
|
存储 C语言
【数据结构】手把手教你单链表(c语言)(附源码)
本文介绍了单链表的基本概念、结构定义及其实现方法。单链表是一种内存地址不连续但逻辑顺序连续的数据结构,每个节点包含数据域和指针域。文章详细讲解了单链表的常见操作,如头插、尾插、头删、尾删、查找、指定位置插入和删除等,并提供了完整的C语言代码示例。通过学习单链表,可以更好地理解数据结构的底层逻辑,提高编程能力。
114 4
|
2月前
|
算法 安全 搜索推荐
2024重生之回溯数据结构与算法系列学习之单双链表精题详解(9)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第2.3章之IKUN和I原达人之数据结构与算法系列学习x单双链表精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
2月前
|
存储 Web App开发 算法
2024重生之回溯数据结构与算法系列学习之单双链表【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构之单双链表按位、值查找;[前后]插入;删除指定节点;求表长、静态链表等代码及具体思路详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
2月前
|
算法
数据结构之购物车系统(链表和栈)
本文介绍了基于链表和栈的购物车系统的设计与实现。该系统通过命令行界面提供商品管理、购物车查看、结算等功能,支持用户便捷地管理购物清单。核心代码定义了商品、购物车商品节点和购物车的数据结构,并实现了添加、删除商品、查看购物车内容及结算等操作。算法分析显示,系统在处理小规模购物车时表现良好,但在大规模购物车操作下可能存在性能瓶颈。
53 0
|
2月前
|
C语言
【数据结构】双向带头循环链表(c语言)(附源码)
本文介绍了双向带头循环链表的概念和实现。双向带头循环链表具有三个关键点:双向、带头和循环。与单链表相比,它的头插、尾插、头删、尾删等操作的时间复杂度均为O(1),提高了运行效率。文章详细讲解了链表的结构定义、方法声明和实现,包括创建新节点、初始化、打印、判断是否为空、插入和删除节点等操作。最后提供了完整的代码示例。
78 0
|
3月前
|
存储
[数据结构] -- 双向循环链表
[数据结构] -- 双向循环链表
28 0
|
3月前
|
存储
探索数据结构:便捷的双向链表
探索数据结构:便捷的双向链表