Intersection of Two Linked Lists Problem

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

Add Two Numbers Represented By Lists Problem

Binary Tree Level Order Traversal Problem with Examples

Jump Game

Zigzag Sort Problem

Boggle Solver Problem

Shortest String Transformation Using A Dictionary Problem

Register for our webinar

How to Nail your next Technical Interview

Loading_icon
Loading...
1 Enter details
2 Select slot
By sharing your contact details, you agree to our privacy policy.

Select a Date

Time slots

Time Zone:

Get tech interview-ready to navigate a tough job market

Best suitable for: Software Professionals with 5+ years of exprerience
Register for our FREE Webinar

Next webinar starts in

00
DAYS
:
00
HR
:
00
MINS
:
00
SEC