Problem Statement
Find Intersection Of Two Singly Linked Lists
Given two singly linked lists, find their intersection if any.
The intersection is the node where the two lists merge, the first node that belongs to both lists, node 4 in the following illustration:
Example
Input: Pointers to the head nodes of the linked list 1 and 2, respectively.
Output: 4
The lists intersect in node 4.
Notes
Input Parameters: Function has two arguments: L1 and L2, the pointers to heads of the singly linked lists.
Output: Function must return an integer, the value from the intersection node or -1 if no intersection exists.
Constraints:
â— 0 <= values in the list nodes <= 10^9
â— 0 <= number of nodes in a list <= 10^5
Let us first try to solve a simpler problem. What if the two linked lists are of the same length? We could start comparing from the first node of both lists. If the two nodes are the same (same address) then it is the intersection node else we advance both pointers to their next nodes and again compare and so on. If we reach the end of both lists, it means they do not intersect.
Now suppose one list is longer than the other by X nodes. It is easy to see that the intersection cannot be found among the first X nodes of the longer list. X is easy to calculate by measuring the length of each list. Then we can reduce the problem to the simpler one by skipping the first X nodes in the longer list. Using this approach we would walk through the lists two times total: once for measuring their lengths and once again for comparing the nodes.
Time Complexity:
O(N) where N is the length of the longer list (or lengths of the two lists combined).
Auxiliary Space Used:
O(1).
Space Complexity:
O(N) where N is the size of input.
// -------- START --------
  static int get_size(LinkedListNode head)
  {
    int N = 0;
    while (head != null)
    {
      N++;
      head = head.next;
    }
    return N;
  }
  static int find_intersection(LinkedListNode l1, LinkedListNode l2)
  {
    // Size of first linked list.
    int N1 = get_size(l1);                   Â
    // Size of second linked list.
    int N2 = get_size(l2);                   Â
    while (N1 > N2)                  Â
    {
      l1 = l1.next;
      N1--;
    }
    while (N2 > N1)                  Â
    {
      l2 = l2.next;
      N2--;
    }
    // Comparing address.
    while (l1 != null && l1 != l2)               Â
    {
      l1 = l1.next;
      l2 = l2.next;
    }
    // If we have reached end.
    if (l1 == null)                      Â
    {
      return -1;
    }
    // Intersection at node pointed by current value of l1.
    return l1.val;                       Â
  }
  // -------- END --------
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
Just drop your name and email so we can send your Power Patterns PDF straight to your inbox. No Spam!
By sharing your contact details, you agree to our privacy policy.
Time Zone: Asia/Dhaka
We’ve sent the Power Patterns PDF to your inbox — it should arrive in the next 30 seconds.
📩 Can’t find it? Check your promotions or spam folder — and mark us as safe so you don’t miss future insights.
We’re hosting a private session where FAANG insiders walk through how they actually use these Power Patterns to crack interviews — and what sets top performers apart.
🎯 If you liked the PDF, you’ll love what we’re sharing next.
Time Zone: