Leetcode--intersection of Linked Lists

Source: Internet
Author: User

Description:

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.

Find the intersection of two linked lists

/** * Definition for singly-linked list. * public class ListNode {* int val; * ListNode Next; * ListNode (int x) {* val = x; * Next = Null *} *} */public class Solution {public ListNode Getintersectionnode (ListNode heada, ListNode headb) {if (H Eada==null | |        Headb==null) return null;        ListNode anode = Heada;        ListNode BNode = headb;        int aLen = 0, Blen = 0;            while (anode! = null) {ALen + +;        Anode = Anode.next;            } while (BNode! = null) {Blen + +;        BNode = Bnode.next;        } if (anode! = BNode) return null;        if (ALen > Blen) {for (int i = 0; i < Alen-blen; i++) Heada = Heada.next;        } else if (ALen < Blen) {for (int i=0; i<blen-alen; i++) headb = Headb.next;            } while (Heada! = headb) {Heada = Heada.next; HEADB = Headb.nexT    } return Heada; }}

Leetcode--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.