234 回文链表

Posted innovationv2

tags:

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

ListNode *reverse(ListNode *head) {
    ListNode *front = head, *rear = nullptr, *temp = nullptr;
    while (front != nullptr) {
        temp = front->next;
        front->next = rear;
        rear = front;
        front = temp;
    }
    return rear;
}

ListNode *middleNode(ListNode *head) {
    ListNode *slow = head;
    ListNode *fast = head;
    while (fast != nullptr && fast->next != nullptr) {
        slow = slow->next;
        fast = fast->next->next;
    }
    return fast == nullptr ? slow : slow->next;
}

bool isPalindrome(ListNode *head) {
    ListNode *mid = middleNode(head);
    ListNode *re = reverse(mid);
    while (re != nullptr) {
        if (re->val != head->val)
            return false;
        re = re->next;
        head = head->next;
    }
    return true;
}

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

javaleetcode234. 回文链表

javaleetcode234. 回文链表

LeetCode 234. 回文链表

Leetcode链表回文链表(234)

Leetcode234. 回文链表(快慢指针+反转链表)

234. 回文链表