234.回文链表

Posted 小刘你最强

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了234.回文链表相关的知识,希望对你有一定的参考价值。

给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 。

示例 1:

输入:head = [1,2,2,1]
输出:true
示例 2:

输入:head = [1,2]
输出:false

思路:先找到中间节点,再将右半边的链表反转,然后从两头开始遍历,要注意偶数个节点

 public boolean isPalindrome(ListNode head) 
        ListNode fast = head;
        ListNode slow = head;
        while(fast != null && fast.next != null) 
            fast = fast.next.next;
            slow = slow.next;
        
        ListNode cur = slow.next;
        while(cur != null) 
            ListNode next = cur.next;
            cur.next = slow;
            slow = cur;
            cur = next;
        
        while(head != slow) 
            if(head.val != slow.val) 
                return false;
            
            if(head.next == slow) 
                return true;
            
            head = head.next;
            slow = slow.next;
        
        return true;
    

以上是关于234.回文链表的主要内容,如果未能解决你的问题,请参考以下文章

javaleetcode234. 回文链表

javaleetcode234. 回文链表

leetcode 234 回文链表

234. 回文链表

LeetCode 234. 回文链表

LeetCode234:回文链表