LeetCode 234. 回文链表 Palindrome Linked List (Easy)

Posted zsy-blog

tags:

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

请判断一个链表是否为回文链表。

技术图片

来源:力扣(LeetCode)

 

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    bool isPalindrome(ListNode* head) {

        // 1.快慢指针找到中点
        ListNode* slow = head;
        ListNode* fast = head;
        while (fast != nullptr && fast->next != nullptr)
        {
            slow = slow->next;
            fast = fast->next->next;
        }
        // 偶数节点, 慢指针走到中点
        if (fast != nullptr) slow = slow->next;

        // 2.反转后半部分链表
        ListNode* prev = nullptr;
        while (slow != nullptr)
        {
            ListNode* temp = slow->next;
            slow->next = prev;
            prev = slow;
            slow = temp;
        }

        // 3.判断两个链表是否相等
        while (head != nullptr && prev != nullptr)
        {
            if (head->val != prev->val) return false;
            head = head->next;
            prev = prev->next;
        }
        return true;
    }
};

 

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

LeetCode234. 回文链表

Leetcode-234. 回文链表

LeetCode 234——回文链表

LeetCode234:回文链表

LeetCode Java刷题笔记—234. 回文链表

算法热门:回文链表(LeetCode 234)