zoukankan      html  css  js  c++  java
  • 160. Intersection of Two Linked Lists

    Write a program to find the node at which the intersection of two singly linked lists begins.

    For example, the following two linked lists:

    A:          a1 → a2
                       ↘
                         c1 → c2 → c3
                       ↗            
    B:     b1 → b2 → b3
    

    begin to intersect at node c1.

    Notes:

    If the two linked lists have no intersection at all, return null.

    The linked lists must retain their original structure after the function returns.

    You may assume there are no cycles anywhere in the entire linked structure.

    Your code should preferably run in O(n) time and use only O(1) memory.

    题目大意:查找2个链表相交的第一个交点

     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     int a,b,i;
    10     struct ListNode *acur;
    11     struct ListNode *bcur;
    12     acur = headA;
    13     bcur = headB;
    14     a = b = 0;
    15     while(acur != NULL || bcur != NULL)         //计算2个链表的长度
    16     {
    17         if(acur != NULL)
    18         {
    19             a++;
    20             acur = acur->next;
    21         }
    22         if(bcur != NULL)
    23         {
    24             b++;
    25             bcur = bcur->next;
    26         }
    27     }
    28     acur = headA;                   
    29     bcur = headB;
    30     if(a > b)                      //长的先走|a-b|步,让2个链表的剩下的长度一样
    31     {
    32         i = a-b;
    33         while(i)
    34         {
    35             acur = acur->next;
    36             i--;
    37         }
    38     }
    39     else
    40     {
    41         i = b - a;
    42         while(i)
    43         {
    44             bcur = bcur->next;
    45             i--;
    46         }
    47     }
    48     while(acur != NULL)            //判断2个链表的第一个相交的结点
    49     {
    50         if(acur == bcur)
    51             break;
    52         acur = acur->next;
    53         bcur = bcur->next;
    54     }
    55     if(acur != NULL)
    56         return acur;
    57     return NULL;
    58     
    59 }
  • 相关阅读:
    angular11源码探索十四[表单校验器]
    2020年终总结
    vue使用腾讯地图获取当前位置
    腾讯地图+element-ui 实现地址搜索标记功能
    腾讯地图SDK公交路线规划Demo2
    腾讯地图SDK公交路线规划Demo
    腾讯位置服务地图SDK自定义路况和字体
    腾讯地图SDK自定义地图和路况
    3D地图的定时高亮和点击事件
    vue+腾讯地图 实现坐标拾取器功能
  • 原文地址:https://www.cnblogs.com/boluo007/p/5510583.html
Copyright © 2011-2022 走看看