Leetcode 234. Palindrome Linked List

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

《Leetcode 234. Palindrome Linked List》 Palindrome Linked List

2. Solution

/**
 * 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) {
        if(!head || !head->next) {
            return true;
        }
        ListNode* current = head;
        ListNode* mid = head;
        while(current && current->next) {
            mid = mid->next;
            current = current->next->next;
        }
        ListNode* pre = mid;
        current = mid->next;
        mid->next = nullptr;
        ListNode* next = nullptr;
        while(current) {
            next = current->next;
            current->next = pre;
            pre = current;
            current = next;
        }
        current = head;
        while(pre) {
            if(pre->val != current->val) {
                return false;
            }
            pre = pre->next;
            current = current->next;
        }
        return true;
    }
};

Reference

  1. https://leetcode.com/problems/palindrome-linked-list/description/
    原文作者:SnailTyan
    原文地址: https://www.jianshu.com/p/833e24dc8041
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞