当前位置:   article > 正文

【数据结构】LeetCode单链表经典题型_struct listnode* head

struct listnode* head

目录

1.移除链表元素​编辑

2.反转链表 ​编辑

 3.链表的中间结点​编辑

 4.链表中倒数第K个结点​编辑

 5.合并两个有序链表​编辑

 6.链表分割

 7.链表的回文结构​编辑

 8.相交链表​编辑

9.环形链表​编辑

10.返回环形链表的起始结点​编辑

11.复制带随机指针的链表​编辑

1.移除链表元素

首先来简单分析一下,这里和上一篇单链表的任意位置删除大同小异,比较简单,注意删除后链表的链接即可,删除之前首先定义一个next记住下一个节点的地址,以免删除过后找不到链接的点,还有一种方法是先将需要删除的val前一个结点和后一个结点连接起来,再删除。

  1. struct ListNode* removeElements(struct ListNode* head, int val){
  2. struct ListNode* cur = head;
  3. struct ListNode* prev = NULL;
  4. while(cur)
  5. {
  6. struct ListNode* next = cur->next;
  7. if(cur->val == val)
  8. {
  9. if(prev == NULL)
  10. {
  11. free(cur);
  12. cur = next;
  13. head = next;
  14. }
  15. else
  16. {
  17. prev->next = next;
  18. free(cur);
  19. cur = next;
  20. }
  21. }
  22. else
  23. {
  24. prev=cur;
  25. cur = cur->next;
  26. }
  27. }
  28. return head;
  29. }

2.反转链表 

这里的思路还是很容易想到的,我们给一个头结点phead,然后从此链表的头结点开始给一个cur,将cur的next存起来,然后将cur->next指向头结点,随后将cur和next向后移一个节点,以此类推,当next为NULL的时候结束。画图给大家演示一下 

  1. struct ListNode* reverseList(struct ListNode* head){
  2. if(head == NULL || head->next == NULL)
  3. return head;
  4. struct ListNode* n1 = NULL, *n2 = head,*n3 = head->next;
  5. while(n2)
  6. {
  7. n2->next = n1;
  8. n1 = n2;
  9. n2 = n3;
  10. if(n3 != NULL)
  11. n3 = n3->next;
  12. }
  13. return n1;
  14. }

 3.链表的中间结点

 这道题比较有意思,这里我们需要用到的思想是快慢指针,slow指针一次走一步,fast指针一次走两步,是slow的两倍,当fast走到最后的时候,那么slow的路程就该是fast的一半,这样就可以找到中间结点了,需要注意的是,我们判定fast结束的标志是fast==NULL还是fast->next==NULL呢

 

  1. struct ListNode* middleNode(struct ListNode* head){
  2. struct ListNode* slow = head;
  3. struct ListNode* fast = head;
  4. while(fast && fast->next)
  5. {
  6. slow = slow->next;
  7. fast = fast->next->next;
  8. }
  9. return slow;
  10. }

 4.链表中倒数第K个结点

这题和上面中间结点大同小异,我们也可以用快慢指针的思想,当fast指针先走K步,然后slow和fast同时一步一步的走,那么他们之间的距离就会始终保持在K,当fast走到最后一个结点时,skow就应该走到倒数第K个结点了 

  1. struct ListNode* FindKthToTail(struct ListNode* pListHead, int k ) {
  2. if(pListHead == NULL)
  3. return NULL;
  4. else
  5. {
  6. struct ListNode* slow = pListHead;
  7. struct ListNode* fast = pListHead;
  8. while(k--)
  9. {
  10. if(fast == NULL)
  11. return NULL;
  12. fast = fast->next;
  13. }
  14. while(fast)
  15. {
  16. slow = slow->next;
  17. fast = fast->next;
  18. }
  19. return slow;
  20. }
  21. }

 5.合并两个有序链表

 思路:这里我的做题思路是给一个头结点head然后两个链表的头设置为cur1和cur2将cur1和cur2比较小的链接在head后面,然后向后走一个结点,再比较,直到有一个链表的cur走到尾了过后将剩余的链接在后面就行了,画图演示一下 

  1. struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
  2. struct ListNode* head = (struct ListNode*)malloc(sizeof(struct ListNode));
  3. struct ListNode* tail = head;
  4. if(list1 == NULL)
  5. return list2;
  6. else if(list2 == NULL)
  7. return list1;
  8. while(list1 && list2)
  9. {
  10. if(list1->val < list2->val)
  11. {
  12. tail->next = list1;
  13. tail = tail->next;
  14. list1 = list1->next;
  15. }
  16. else
  17. {
  18. tail->next = list2;
  19. tail = tail->next;
  20. list2 = list2->next;
  21. }
  22. }
  23. if(list1)
  24. {
  25. tail->next = list1;
  26. }
  27. else if(list2)
  28. {
  29. tail->next = list2;
  30. }
  31. struct ListNode* Plist = head->next;
  32. free(head);
  33. head = NULL;
  34. return Plist;
  35. }

 6.链表分割

 

 思路:因为不能改变分割后的顺序,给大家用实例画图来讲解

  1. class Partition {
  2. public:
  3. ListNode* partition(ListNode* pHead, int x) {
  4. // write code here
  5. ListNode* greaterHead = (ListNode*)malloc(sizeof(ListNode));
  6. ListNode* lessHead = (ListNode*)malloc(sizeof(ListNode));
  7. ListNode* lessTail = (ListNode*)malloc(sizeof(ListNode));
  8. ListNode* greaterTail = (ListNode*)malloc(sizeof(ListNode));
  9. ListNode* cur = pHead;
  10. lessHead = lessTail;
  11. greaterHead = greaterTail;
  12. lessTail->next = NULL;
  13. greaterTail->next = NULL;
  14. while(cur)
  15. {
  16. if(cur->val < x)
  17. {
  18. lessTail->next = cur;
  19. lessTail = cur;
  20. }
  21. else
  22. {
  23. greaterTail->next = cur;
  24. greaterTail = cur;
  25. }
  26. cur = cur->next;
  27. }
  28. lessTail->next = greaterHead->next;
  29. //将最后一个值置为空,避免出现回环情况
  30. greaterTail->next = NULL;
  31. free(greaterHead);
  32. ListNode* node = lessHead->next;
  33. free(lessHead);
  34. return node;
  35. }
  36. };

 7.链表的回文结构

 思路:回文结构就相当于链表以中间结点为对称轴左右对称,我们只需要将中间结点以后的部分翻转过来然后和前面的部分进行比较,如果相等就返回true,不相等就返回false。而找中间结点和翻转链表我们上面讲过,可以直接拿过来用。

  1. struct ListNode* middleNode(struct ListNode* head){
  2. struct ListNode* slow = head;
  3. struct ListNode* fast = head;
  4. while(fast && fast->next)
  5. {
  6. slow = slow->next;
  7. fast = fast->next->next;
  8. }
  9. return slow;
  10. }
  11. struct ListNode* reverseList(struct ListNode* head){
  12. if(head == NULL || head->next == NULL)
  13. return head;
  14. struct ListNode* n1 = NULL, *n2 = head,*n3 = head->next;
  15. while(n2)
  16. {
  17. n2->next = n1;
  18. n1 = n2;
  19. n2 = n3;
  20. if(n3 != NULL)
  21. n3 = n3->next;
  22. }
  23. return n1;
  24. }
  25. class PalindromeList {
  26. public:
  27. bool chkPalindrome(ListNode* A) {
  28. // write code here
  29. if(A == NULL)
  30. return false;
  31. //1.先找到中间结点
  32. struct ListNode* mid = middleNode(A);
  33. //2.翻转后面的部分
  34. struct ListNode* midAfter = reverseList(mid);
  35. while(midAfter && A)
  36. {
  37. if((A->val) != (midAfter->val))
  38. {
  39. return false;
  40. }
  41. else
  42. {
  43. A = A->next;
  44. midAfter = midAfter->next;
  45. }
  46. }
  47. return true;
  48. }
  49. };

 8.相交链表

 思路:由于A链表和B链表的长度可不同,所以我们第一步先将两个链表遍历一遍,求出两个链表的长度,然后让长的链表先走差距不,这样他们剩下的路程都是相同的,没走一遍比较他们的next是否相同(不能比较val,因为val可能存在相同的值),,若相同则返回结点,该结点为其实结点,当两个链表走到空都没有,则返回NULL。

  1. struct ListNode *getIntersectionNode(struct ListNode *headA, struct ListNode *headB) {
  2. if(headA == NULL || headB == NULL)
  3. return NULL;
  4. struct ListNode* curA = headA;
  5. struct ListNode* curB = headB;
  6. int lenA = 0;
  7. int lenB = 0;
  8. while(curA)
  9. {
  10. curA = curA->next;
  11. lenA++;
  12. }
  13. while(curB)
  14. {
  15. curB = curB->next;
  16. lenB++;
  17. }
  18. //先将A链表视为长的,B链表视为短的
  19. struct ListNode* longList = headA, *shortList = headB;
  20. int gap = abs(lenA - lenB);
  21. //判断A如果比B短就交换一下
  22. if(lenA < lenB)
  23. {
  24. longList = headB;
  25. shortList = headA;
  26. }
  27. //长的先走差距步
  28. while(gap--)
  29. {
  30. longList = longList->next;
  31. }
  32. //再同时走判断指向的next的地址是否一样
  33. while(longList && shortList)
  34. {
  35. if(longList == shortList)
  36. {
  37. return longList;
  38. }
  39. else
  40. {
  41. longList = longList->next;
  42. shortList = shortList->next;
  43. }
  44. }
  45. return NULL;
  46. }

9.环形链表

思路:这里我们也用到快慢指针,slow走一步,fast走两步,当fast进化时slow走了一半,当slow进环后fast也在环里面,假设他们之间的差距为N,他们每次的距离都为-1最终会相遇,则说明次链表有环,若没有环,则fast会首先走到空,就返回false。 

  1. bool hasCycle(struct ListNode *head) {
  2. struct ListNode* slow = head, *fast = head;
  3. while(fast && fast->next)
  4. {
  5. slow = slow->next;
  6. fast = fast->next->next;
  7. if(slow == fast)
  8. {
  9. return true;
  10. }
  11. }
  12. return false;
  13. }

10.返回环形链表的起始结点

 思路:上面我们用到了快慢指针来证明链表是否有环,这里我们要返回进入环的起始结点,这里的思路是当他们相遇时,一个指针从相遇点开始走,一个指针走头结点开始走,他们相遇的点就是环的起始点,这个思路非常妙,下面用图给大家推演一遍。因为L=C-X,所以可以从meet和head同时走且在环起始点相遇。

  1. struct ListNode *detectCycle(struct ListNode *head) {
  2. struct ListNode* fast, *slow;
  3. fast = slow = head;
  4. while(fast && fast->next)
  5. {
  6. slow = slow->next;
  7. fast = fast->next->next;
  8. if(slow == fast)
  9. {
  10. struct ListNode* meet = fast;
  11. while(meet != head)
  12. {
  13. head = head->next;
  14. meet = meet->next;
  15. }
  16. return meet;
  17. }
  18. }
  19. return NULL;
  20. }

11.复制带随机指针的链表

 题目描述:这道题的意思就是自己开创一个链表与上面一样,完全复制出来。

思路:第一步:先从复制next,从头head开始,没走过一个链表就开创一个结点链接在次结点后面,相当于在次位置插一个结点,然后将next链接到原链表,并且赋值

 第二步:从原链表cur开始,cur指向的random就是我们需要找的random,因为是复制新的链表,所以联系应该在我们copy的链表里,因为第一步每个原链表后面开创了一个结点,所以当前的cur指向的random的next也就是cur->random->next就是我们需要链接的结点。以copy的13结点的random为例copy的13的random等于原链表13的random也就是原链表的7的next,也就是copy的7,这样就将copy之间的random链接起来了。

 第三步:也就是断开copy链表与原链表的联系,并且将copy的链表链接在一起。

  1. class Solution {
  2. public:
  3. Node* copyRandomList(Node* head) {
  4. if(head == NULL)
  5. return NULL;
  6. struct Node* cur = head;
  7. //1.开辟的新节点放在原结点后面,串联起来
  8. while(cur)
  9. {
  10. struct Node* next = cur->next;
  11. struct Node* copy = (struct Node*)malloc(sizeof(struct Node));
  12. copy->val = cur->val;
  13. copy->next = cur->next;
  14. cur->next = copy;
  15. cur = next;
  16. }
  17. //2.处理random(将copy的random = copy->next->random)
  18. cur = head;
  19. while(cur)
  20. {
  21. struct Node* copy = cur->next;
  22. if(cur->random == NULL)
  23. copy->random = NULL;
  24. else
  25. copy->random = cur->random->next;
  26. cur = copy->next;
  27. }
  28. //3.回复原链表,将copy的链表串联起来
  29. //开辟一个哨兵位的头结点
  30. struct Node* copyhead, *copytail;
  31. copyhead = copytail = (struct Node*)malloc(sizeof(struct Node));
  32. copyhead = copytail;
  33. cur = head;
  34. while(cur)
  35. {
  36. struct Node* copy = cur->next;
  37. struct Node* next = copy->next;
  38. copytail->next = copy;
  39. copytail = copytail->next;
  40. cur->next = next;
  41. cur = next;
  42. }
  43. struct Node* guard = copyhead;
  44. copyhead = copyhead->next;
  45. free(guard);
  46. return copyhead;
  47. }
  48. };

 

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

闽ICP备14008679号