234. Palindrome Linked List - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Description:
Given the head of a singly linked list, determine if the linked list is a palindrome. A palindrome is a sequence that reads the same backward as forward.

Examples:

  1. Example 1:

    • Input: head = [1, 2, 2, 1]
    • Output: true
    • Explanation:
      The linked list reads 1 → 2 → 2 → 1 from both directions.
  2. Example 2:

    • Input: head = [1, 2]
    • Output: false
    • Explanation:
      The linked list reads 1 → 2 in the forward direction and 2 → 1 in reverse, so it is not a palindrome.

Constraints:

  • The number of nodes in the list is in the range [1, 10⁵].
  • -10⁵ ≤ Node.val ≤ 10⁵

Hints

  1. Two-Pointer Technique:
    Use a fast and slow pointer to find the midpoint of the linked list. The fast pointer moves twice as fast as the slow pointer.

  2. Reversing a List:
    After finding the midpoint, reverse the second half of the linked list. Then, compare it with the first half.

  3. Comparison:
    Compare node by node for the two halves. If all corresponding nodes are equal, the list is a palindrome.

Approaches

Approach 1: Reverse the Second Half

Idea:

  • Use the fast and slow pointer technique to locate the midpoint.
  • Reverse the second half of the list.
  • Compare the first half and the reversed second half node by node.
  • Optionally, restore the list to its original order if needed.

Pros:

  • Time complexity is O(n) and space complexity is O(1).

Cons:

  • Modifies the list (although it can be restored).

Approach 2: Use a Stack

Idea:

  • Traverse the first half of the list and push its nodes’ values onto a stack.
  • For the second half, pop from the stack and compare with the current node’s value.
  • If all comparisons match, the list is a palindrome.

Pros:

  • Straightforward to implement.

Cons:

  • Requires O(n) extra space for the stack.

Approach 3: Convert to Array

Idea:

  • Convert the linked list into an array.
  • Use two pointers to check if the array is a palindrome.

Pros:

  • Easy to implement.

Cons:

  • Uses O(n) extra space; less optimal than reversing the list.

Code Implementations

Python Implementation

Python3
Python3

. . . .

Java Implementation

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:

    • Finding the midpoint takes O(n).
    • Reversing the second half takes O(n).
    • Comparing the two halves takes O(n).
    • Overall, the time complexity is O(n).
  • Space Complexity:

    • The solution uses O(1) extra space (in-place reversal), aside from the recursion stack in case of a recursive solution (which is not used here).

Step-by-Step Walkthrough with Visual Example

Consider the linked list: [1, 2, 2, 1]

  1. Finding the Midpoint:

    • Initialize both slow and fast at the head.
    • After one iteration:
      • slow moves to 2 (second node)
      • fast moves to 2 (third node)
    • After next iteration:
      • slow moves to 2 (third node)
      • fast moves beyond the last node.
    • The midpoint is at the third node (value 2).
  2. Reversing the Second Half:

    • Original second half: 2 → 1
    • After reversal: 1 → 2
  3. Comparing the Two Halves:

    • First half: 1 → 2
    • Reversed second half: 1 → 2
    • Each corresponding pair is equal, so the list is a palindrome.

Common Mistakes

  • Incorrect Midpoint Calculation:
    Be careful with the fast and slow pointer technique; in an even-length list, choose the correct starting point for the second half.

  • Reversing the List Incorrectly:
    Ensure that the pointers are updated correctly when reversing the second half.

  • Ignoring Edge Cases:
    Always consider single-node lists and empty lists.

Edge Cases

  • Single Node:
    A list with only one node is always a palindrome.

  • Empty List:
    Although not common in problem constraints, an empty list can be considered a palindrome.

  • Even vs. Odd Length:
    For odd-length lists, the middle element does not need to be compared.

  • Alternative Variation:
    Instead of modifying the list (by reversing the second half), one can copy the values into an array and use two pointers to check for a palindrome.

  • Related Problems for Further Practice:

    • Reverse Linked List
    • Merge Two Sorted Lists
    • Reorder List
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Why choose IBM?
What is a syntax in coding?
What is the best use of LeetCode?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;