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.

    答案:

    •    将A,B两个链表看做两部分,交叉前与交叉后
    •    交叉后的长度是一样的,因此交叉前的长度差即为总的长度差
    •    只要去除这些长度差,距离交叉点就等距了
    •    为了节省计算,在计算链表长度的时候,顺便比较一下两个链表的尾节点是否一样,若不一样,则不可能相交,直接可以返回NULL
     1 /**
     2  * Definition for singly-linked list.
     3  * struct ListNode {
     4  *     int val;
     5  *     ListNode *next;
     6  *     ListNode(int x) : val(x), next(NULL) {}
     7  * };
     8  */
     9 class Solution {
    10 public:
    11     ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
    12         if(headA==NULL||headB==NULL)
    13         return NULL;
    14        int l1=1;
    15        int l2=1;
    16        int i;
    17        ListNode *p1=headA, *p2=headB;
    18        while(p1->next!=NULL){
    19            p1=p1->next;
    20            l1++;
    21        }
    22        while(p2->next!=NULL){
    23            p2=p2->next;
    24            l2++;
    25        }
    26        if(p1->val!=p2->val)
    27        return NULL;
    28        if(l1>l2){
    29            for(i=0;i<l1-l2;i++){
    30                headA=headA->next;
    31            }
    32        }
    33        if(l1<l2){
    34            for(i=0;i<l2-l1;i++){
    35                headB=headB->next;
    36            }
    37        }
    38        while(headA!=headB){
    39            headA=headA->next;
    40            headB=headB->next;
    41        }
    42        return headA; 
    43     }
    44 };

     

  • 相关阅读:
    XAML语言
    Sqlite 数据库插入标示字段 获取新Id 及利用索引优化查询
    提高C#编程水平的50个要点 ——学生的迷茫
    734条高频词组笔记
    C#读取ini配置文件
    MD5加密
    SQL Server 2000 及 2005 端口修改
    Java控制台程序20例
    Tomcat 6.0+ SQL Server 2005连接池的配
    阿里巴巴离职DBA 35岁总结的职业生涯
  • 原文地址:https://www.cnblogs.com/Reindeer/p/5634458.html
Copyright © 2011-2022 走看看