160. Intersection of Two Linked Lists

160.Intersection of Two Linked Listsarrow-up-right

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.

My Solutions:

方法1:

  • Add list A to end of list B and add list B to end of list A

  • If they have intersection, it is located at the end of combined list at same index

    • A: a1 -> a2 -> c1 -> c2 -> c3 -> b1 -> b2 -> b3 -> c1 -> c2 -> c3

    • B: b1 -> b2 -> b3 -> c1 -> c2 -> c3 -> a1 -> a2 -> c1 -> c2 -> c3

  • Time: O(m + n) [m, n are lenA and lenB]

  • Space: O(1)

方法2:

  • 求出A和B分别长度 (另写一个求长度method)

  • 如果lenA > lenB, 先跳过A的一部分直到lenA == lenB相等;反之同理

  • 用while循环headA 和headB直到两者相等

Time: O(n); Space: O(1)

Last updated