"Leetcode" 160. Intersection of Linked Lists

Source: Internet
Author: User

Title:

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

For example, the following, linked lists:

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

Begin to intersect at node C1.

Notes:

    • If The linked lists has no intersection at all, return null .
    • The linked lists must retain their original structure after the function returns.
    • You may assume there is no cycles anywhere in the entire linked structure.
    • Your code should preferably run in O (n) time and use only O (1) memory.
Tips:

Assuming that the two linked lists are combined, the length of the merged part must be the same, and the length will be different before the merge, so the length is first calculated and then the long list is moved forward so that they are "at the same starting line" and then compared in turn.

Code:
/** Definition for singly-linked list. * struct ListNode {* int val; * ListNode *next; * ListNode (int x) : Val (x), Next (NULL) {}}; */classSolution { Public: ListNode*getintersectionnode (ListNode *heada, ListNode *headb) {        if(!heada | |!headb)returnNULL; intLenA =0, LenB =0; ListNode*nodea, *NodeB;  for(NodeA = Heada; nodeA; NodeA = nodea->next, + +LenA);  for(NodeB = headb; nodeB; NodeB = nodeb->next, + +LenB); if(LenB >LenA) {             for(inti =0; i < Lenb-lena; ++i, headb = headb->next); } Else {             for(inti =0; i < Lena-lenb; ++i, Heada = heada->next); }        if(Heada = = headb)returnHeada;  while(Heada &&headb) {Heada= heada->Next; HEADB= headb->Next; if(Heada = = headb)returnHeada; }        returnNULL; }};

"Leetcode" 160. Intersection of Linked Lists

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.