[LeetCode] Intersection of Two Linked Lists, twosumleetcode

Source: Internet
Author: User

[LeetCode] Intersection of Two Linked Lists, twosumleetcode

Question

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, returnnull.
  • 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 shocould preferably run in O (n) time and use only O (1) memory.
Answer

The question requires that the first node of the intersection of two single-chain tables can be traversed by traversing the first linked list, calculating the length of len1, saving the last node, traversing the second linked list, and calculating the length of len2, at the same time check whether the last node is the same, and then traverse the two linked list from the beginning, (if len1> len2), the linked list first traverses the len1-len2 nodes, then traverse to the same node at the same time, the Code is as follows:

/*** 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 (headA = null | headB = null) {return null ;} int len1 = 0; ListNode h1 = headA; while (h1.next! = Null) {// note that. next h1 = h1.next; len1 ++;} int len2 = 0; ListNode h2 = headB; while (h2.next! = Null) {h2 = h2.next; len2 ++;} ListNode n1 = headA; ListNode n2 = headB; if (len1> len2) {int k = len1-len2; while (k --> 0) {n1 = n1.next;} else {int k = len2-len1; while (k --> 0) {n2 = n2.next ;}} /* or while (n1! = N2) {n1 = n1.next; n2 = n2.next;} return n1; */while (n1! = Null & n2! = Null) {if (n1 = n2) {return n1;} n1 = n1.next; n2 = n2.next;} return null ;}}

--- EOF ---


Related Article

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.