Algorithm Deep Dive Computer Science

Advanced Problems in Linked List Data Structure

In this section we will go through some of the advanced programming problems involving linked lists.

Finding Intersecting Node of Two Linked Lists

Intersecting linked lists are two separate linked lists which share a common node or sequence of nodes. This occurs when two initially distinct lists converge at a specific point, creating a Y-shaped structure. Intersecting linked lists

Check if a given Linked List is Palindrome

A palindrome is a sequence of numbers or characters that reads the same forwards and backwards. For example, words like "radar" or "madam" are palindromes. The sequence of letters are the same when read in forward direction or in reverse