• 链表 oj2 (7.31)


    206. 反转链表 - 力扣(LeetCode)

    我们通过头插来实现

    将链表上的节点取下来(取的时候需要记录下一个节点),形成新的链表,对新的链表进行头插。

    1. /**
    2. * Definition for singly-linked list.
    3. * struct ListNode {
    4. * int val;
    5. * struct ListNode *next;
    6. * };
    7. */
    8. struct ListNode* reverseList(struct ListNode* head)
    9. {
    10. //用cur对原链表进行遍历
    11. struct ListNode* cur=head,*newhead=NULL;
    12. //原链表为空,遍历结束
    13. while(cur)
    14. {
    15. //记录cur的下一个节点
    16. struct ListNode* next=cur->next;
    17. //cur链接到新链表
    18. cur->next=newhead;
    19. //cur成为新链表的头指针
    20. newhead=cur;
    21. //cur通过next在原链表中向后移
    22. cur=next;
    23. }
    24. return newhead;
    25. }

    21. 合并两个有序链表 - 力扣(LeetCode)

    这里需要引用哨兵位,先介绍一下

        

    哨兵位就是不带数据的头节点,且为固定的节点,当链表为空时,带哨兵位的链表(右)存在一个头节点(空间),而不带哨兵位的链表(左)则没有节点。

    更改带哨兵位的链表(增删查改)就不需要判断,通过二重指针改变头指针,通过 next 就能直接实现。

    使用的时候为哨兵位申请一块动态内存,作为头节点,结束的时候可以根据题目要求将其释放。

    实现:

    1. /**
    2. * Definition for singly-linked list.
    3. * struct ListNode {
    4. * int val;
    5. * struct ListNode *next;
    6. * };
    7. */
    8. struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
    9. if(list1==NULL)
    10. {
    11. return list2;
    12. }
    13. if(list2==NULL)
    14. {
    15. return list1;
    16. }
    17. struct ListNode* head=NULL,*tail=NULL;
    18. //带一个哨兵位,方便尾插
    19. head=tail=(struct ListNode*)malloc(sizeof(struct ListNode));
    20. while(list1&&list2)
    21. {
    22. if(list1->valval)
    23. {
    24. tail->next=list1;
    25. tail=tail->next;
    26. list1=list1->next;
    27. }
    28. else
    29. {
    30. tail->next=list2;
    31. tail=tail->next;
    32. list2=list2->next;
    33. }
    34. }
    35. //
    36. if(list2)
    37. {
    38. tail->next=list2;
    39. }
    40. if(list1)
    41. {
    42. tail->next=list1;
    43. }
    44. //哨兵位的头使用完需要释放掉
    45. struct ListNode* del=head;
    46. head=head->next;
    47. free(del);
    48. return head;
    49. }

    链表分割_牛客题霸_牛客网 (nowcoder.com)

    思路是创建两个链表,将小于 x 的尾插到第一个链表,大于 x 尾插到第二个链表。

    此题目用带哨兵位的链表做更加简单,因为尾插时不用考虑链表是否为空的情况,将两个链表链接的时候也不需要考虑其中一个链表为空的情况了(即不用担心链表为空的情况)。

    1. /*
    2. struct ListNode {
    3. int val;
    4. struct ListNode *next;
    5. ListNode(int x) : val(x), next(NULL) {}
    6. };*/
    7. #include
    8. class Partition {
    9. public:
    10. ListNode* partition(ListNode* pHead, int x) {
    11. struct ListNode* ghead, *gtail, *lhead, *ltail;
    12. ghead = gtail = (struct ListNode*)malloc(sizeof(struct ListNode));
    13. lhead = ltail = (struct ListNode*)malloc(sizeof(struct ListNode));
    14. //用cur遍历
    15. struct ListNode* cur = pHead;
    16. while (cur)
    17. {
    18. if(cur->val < x)
    19. {
    20. ltail->next = cur;
    21. ltail = ltail->next;
    22. }
    23. else
    24. {
    25. gtail->next = cur;
    26. gtail = gtail->next;
    27. }
    28. cur = cur->next;
    29. }
    30. //将低链表的尾链接到高链表的哨兵位之后的节点
    31. ltail->next = ghead->next;
    32. //将目标链表的尾置空,否则产生环
    33. gtail->next = nullptr;
    34. //拷贝目标链表的头节点
    35. struct ListNode* head = lhead->next;
    36. //释放哨兵位
    37. free(lhead);
    38. free(ghead);
    39. return head;
    40. }
    41. };

    链表的回文结构_牛客题霸_牛客网 (nowcoder.com)

    回文结构就是对称的意思,例如 1 2 2 1,1 2 3 2 1。

    结合前面的 oj 题目,我们容易想到一个方法,先找出链表的后半段,然后将其逆置,再将其与前半段比较,如果都相同,则为回文结构。

    1. /*
    2. struct ListNode {
    3. int val;
    4. struct ListNode *next;
    5. ListNode(int x) : val(x), next(NULL) {}
    6. };*/
    7. class PalindromeList {
    8. public:
    9. //反转链表
    10. struct ListNode* reverseList(struct ListNode* head)
    11. {
    12. //用cur对原链表进行遍历
    13. struct ListNode* cur=head,*newhead=nullptr;
    14. //原链表为空,遍历结束
    15. while(cur)
    16. {
    17. //记录cur的下一个节点
    18. struct ListNode* next=cur->next;
    19. //cur链接到新链表
    20. cur->next=newhead;
    21. //cur成为新链表的头指针
    22. newhead=cur;
    23. //cur通过next在原链表中向后移
    24. cur=next;
    25. }
    26. return newhead;
    27. }
    28. //找出中间节点
    29. struct ListNode* middleNode(struct ListNode* head){
    30. struct ListNode* slow=head,*fast=head;
    31. while(fast&&fast->next)
    32. {
    33. slow=slow->next;
    34. fast=fast->next->next;
    35. }
    36. return slow;
    37. }
    38. bool chkPalindrome(ListNode* head) {
    39. //找出后半段
    40. struct ListNode* mid=middleNode(head);
    41. //将后半段逆置
    42. struct ListNode* rmid=reverseList(mid);
    43. while(rmid&&head)
    44. {
    45. if(rmid->val!=head->val)
    46. {
    47. return false;
    48. }
    49. rmid=rmid->next;
    50. head=head->next;
    51. }
    52. return true;
    53. }
    54. };

    160. 相交链表 - 力扣(LeetCode)

    思路:

    1.遍历计算出A,B链表各自的长度 lenA,lenB

    2.长的链表走差距步 lenA-lenB,此时两条链表的长度相同

    3.同时移动找交点(指针相同),最后返回这个交点。

    1. /**
    2. * Definition for singly-linked list.
    3. * struct ListNode {
    4. * int val;
    5. * struct ListNode *next;
    6. * };
    7. */
    8. struct ListNode *getIntersectionNode(struct ListNode *headA, struct ListNode *headB) {
    9. struct ListNode* curA=headA,*curB=headB;
    10. int lenA=1,lenB=1;
    11. //提示了链表不为空,因此结尾用下一个节点判断,同时初始长度为1
    12. while(curA->next)
    13. {
    14. curA=curA->next;
    15. lenA++;
    16. }
    17. while(curB->next)
    18. {
    19. curB=curB->next;
    20. lenB++;
    21. }
    22. //尾节点不同,一定没有交点
    23. if(curA !=curB)
    24. {
    25. return NULL;
    26. }
    27. struct ListNode* longList=headA,*shortList=headB;
    28. if(lenA
    29. {
    30. longList=headB;
    31. shortList=headA;
    32. }
    33. //算出差距步(绝对值)
    34. int gap=abs(lenA-lenB);
    35. //长的先走差距步
    36. while(gap--)
    37. {
    38. longList=longList->next;
    39. }
    40. //同时走找交点,相等就找到了
    41. while(longList !=shortList)
    42. {
    43. longList=longList->next;
    44. shortList=shortList->next;
    45. }
    46. return longList;
    47. }

    141. 环形链表 - 力扣(LeetCode)

    链表有循环或者非循环

    循环链表的尾节点指向头节点。

    还有一种带环链表,它的尾节点可以指向链表的任意一个节点(包括自己)。

    带环链表中的节点会重复出现,我们依然定义一快一慢指针,如果是带环链表,那么快指针一定能追上慢指针,两个指针一定有相等的时候(追及问题);如果不带环,直接就遍历到空了。

    1. /**
    2. * Definition for singly-linked list.
    3. * struct ListNode {
    4. * int val;
    5. * struct ListNode *next;
    6. * };
    7. */
    8. bool hasCycle(struct ListNode *head) {
    9. struct ListNode* fast=head,*slow=head;
    10. //链表可能不为环形
    11. while(fast&&fast->next)
    12. {
    13. fast=fast->next->next;
    14. slow=slow->next;
    15. if(slow==fast)
    16. {
    17. return true;
    18. }
    19. }
    20. return false;
    21. }

    由带环追及问题引发的思考:

    1.slow走一步,fast走两步,一定能追上吗,会不会错过?

    2.slow走一步,fast走n步(n>=3),一定能追上吗,会不会错过?

    如果 slow 走一步,fast 走三步,假设 slow 入环时,slow 和 fast 的距离为 M,每移动(追击)一次,距离缩小2,若 M 为偶数,则当距离减为0时,刚好追上;若 M 为奇数,距离最小时为 -1,即fast 超过了 slow 一步,此时又要观察环的长度C,此时 slow 和 fast 的距离为 C-1,若 C 为奇数,C-1为偶数,那么再经过一轮追击之后就能刚好追上。如果 C 为偶数,那么 C-1 为奇数,奇数-2 永远为奇数,就永远追不上了。 

    142. 环形链表 II - 力扣(LeetCode)

    分析:

    设七点到入口长度:L

    环的周长:C

    入口点到相遇点的距离:X

    fast 走的距离(速度)为 slow 的二倍

    slow 进环后的一圈内,fast 一定追上 slow,slow 走的距离为 L+X

    slow 进环时,fast 已经走了 n(n>=1) 圈了,fast 走的距离为 L+n*C+X

    fast 追赶 slow 之前会先补足 n 圈,

    fast 走的距离(速度)为 slow 的二倍可知

    2(L+X)=L+n*C+X

    同减去L+X

    L+X=n*C

    L=n*C-X

    计算的时候我们默认为 fast 已经跑到 n-1 圈,因此不需要关注 n .

    从这个结论我们可以得到从相遇点到环入口点的距离从起点到入口点的距离相同,要想找到入口点,就需要两个指针分别从这两个点开始跑,它们相遇的位置就是入口点。

    1. /**
    2. * Definition for singly-linked list.
    3. * struct ListNode {
    4. * int val;
    5. * struct ListNode *next;
    6. * };
    7. */
    8. struct ListNode *detectCycle(struct ListNode *head) {
    9. struct ListNode* fast,*slow;
    10. fast=slow=head;
    11. while(fast&&fast->next)
    12. {
    13. slow=slow->next;
    14. fast=fast->next->next;
    15. //相遇
    16. if(slow==fast)
    17. {
    18. //记录相遇点
    19. struct ListNode* meet=slow;
    20. //各自从相遇点和头节点开始跑,相遇则为入口点
    21. while(head!=meet)
    22. {
    23. head=head->next;
    24. meet=meet->next;
    25. }
    26. return meet;
    27. }
    28. }
    29. //fast或fast的下一个节点为空,说明无环
    30. return NULL;
    31. }

    法2:

    将环从相遇点断开,相遇点之后作为一条新的链表,和旧链表一起找相交点,相交点就是入口点。

  • 相关阅读:
    【NOI模拟赛】汁树(树形DP)
    游戏内存优化
    k8s service
    Postman和Jmeter的区别
    BLEMotion-Kit 开发环境搭建&评估板程序下载
    解决OpenOCD烧录STM32失败, 无法通过SWD连接的问题
    Maven项目中如何引入本地的jar包
    Android Gldie复用只取之前decode过的缓存resource,Kotlin
    DAO 中常见的投票治理方式
    契约锁助力青岛市市立医院:报销、核酸检测及经济类合同电子签
  • 原文地址:https://blog.csdn.net/dn235z/article/details/133838225