LeetCode系列234—回文链表

题意

234. 回文链表

题解

方法一:将值复制到数组中后用双指针法

class Solution {
    
    
public:
    bool isPalindrome(ListNode* head) {
    
    
        vector<int> vals;
        while (head != nullptr) {
    
    
            vals.emplace_back(head->val);
            head = head->next;
        }
        for (int i = 0, j = (int)vals.size() - 1; i < j; ++i, --j) {
    
    
            if (vals[i] != vals[j]) {
    
    
                return false;
            }
        }
        return true;
    }
};

方法二:递归

class Solution {
    
    
    ListNode* frontPointer;
public:
    bool recursivelyCheck(ListNode* currentNode) {
    
    
        if (currentNode != nullptr) {
    
    
            if (!recursivelyCheck(currentNode->next)) {
    
    
                return false;
            }
            if (currentNode->val != frontPointer->val) {
    
    
                return false;
            }
            frontPointer = frontPointer->next;
        }
        return true;
    }

    bool isPalindrome(ListNode* head) {
    
    
        frontPointer = head;
        return recursivelyCheck(head);
    }
};

方法三:快慢指针

class Solution {
    
    
public:
    bool isPalindrome(ListNode* head) {
    
    
        if (head == nullptr) {
    
    
            return true;
        }

        // 找到前半部分链表的尾节点并反转后半部分链表
        ListNode* firstHalfEnd = endOfFirstHalf(head);
        ListNode* secondHalfStart = reverseList(firstHalfEnd->next);

        // 判断是否回文
        ListNode* p1 = head;
        ListNode* p2 = secondHalfStart;
        bool result = true;
        while (result && p2 != nullptr) {
    
    
            if (p1->val != p2->val) {
    
    
                result = false;
            }
            p1 = p1->next;
            p2 = p2->next;
        }        

        // 还原链表并返回结果
        firstHalfEnd->next = reverseList(secondHalfStart);
        return result;
    }

    ListNode* reverseList(ListNode* head) {
    
    
        ListNode* prev = nullptr;
        ListNode* curr = head;
        while (curr != nullptr) {
    
    
            ListNode* nextTemp = curr->next;
            curr->next = prev;
            prev = curr;
            curr = nextTemp;
        }
        return prev;
    }

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

参考

回文链表

猜你喜欢

转载自blog.csdn.net/younothings/article/details/120290833