> For the complete documentation index, see [llms.txt](https://lfool.gitbook.io/leetcodenote/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lfool.gitbook.io/leetcodenote/learn/linked-list/palindrome-linked-list.md).

# Palindrome Linked List

## Description

Given a singly linked list, determine if it is a palindrome.

**Example 1:**

> **Input:** 1->2&#x20;
>
> **Output:** false

**Example 2:**

> **Input:** 1->2->2->1&#x20;
>
> **Output:** true

**Follow up:**\
Could you do it in O(n) time and O(1) space?

## **Code**

```java
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public boolean isPalindrome(ListNode head) {
        ListNode fast = head;
        ListNode slow = head;
        while (fast != null && fast.next != null) {
            fast = fast.next.next;
            slow = slow.next;
        }
        if (fast != null) slow = slow.next;
        slow = reverse(slow);
        ListNode tHead = head;
        while (slow != null) {
            if (slow.val != tHead.val) return false;
            slow = slow.next;
            tHead = tHead.next;
        }
        return true;
    }
    
    public ListNode reverse(ListNode head) {
        ListNode newHead = null;
        while (head != null) {
            ListNode next = head.next;
            head.next = newHead;
            newHead = head;
            head = next;
        }
        return newHead;
    }
}
```
