快慢指针做法:

1.设置快慢指针找到链表中点。

2.翻转链表后半段:在中点之后的一个节点开始逐个翻转。

3.从两头开始遍历,如果出现两个节点val值不同,则返回false,否则返回true.

import java.util.*;

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class PalindromeList {
    public boolean chkPalindrome(ListNode A) {
        if(A==null||A.next==null){
            return true;
        }
        ListNode fast=A;
        ListNode slow=A;
        //找到中点
        while(fast!=null&&fast.next!=null){
            fast=fast.next.next;
            slow=slow.next;
        }
        //翻转
        ListNode cur=slow.next;
        while(cur!=null){
            ListNode curNext=cur.next;
            cur.next=slow;
            slow=cur;
            cur=curNext;
        }
        //对比
        while(A!=slow){
            if(A.val!=slow.val){
                return false;
            }
            if(A.next==slow){
                return true;
            }
            A=A.next;
            slow=slow.next;
        }
        return true;
    }
}