码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 234 回文链表

时间:2019-08-16 15:40:55      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:leetcode   判断   一个   lse   while   next   color   fast   etc   

题目

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

 

解题思路

反转链表的后半段。

 

C++代码

/**
 * 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 == NULL || head->next == NULL)
            return true;
        ListNode* slow = head;
        ListNode* fast = head;
        while(fast->next)
        {
            slow = slow->next;
            fast = fast->next;
            if(fast->next)
                fast = fast->next;
        }
        fast = slow->next;
        slow->next = NULL;
        while(fast)
        {
            ListNode *p = fast->next;
            fast->next = slow;
            slow = fast;
            fast = p;
        }
        fast = slow;
        slow = head;
        while(slow && fast)
        {
            if(slow->val != fast->val)
                return false;
            fast = fast->next;
            slow = slow->next;
        }
        return true;
    }
};

 

leetcode 234 回文链表

标签:leetcode   判断   一个   lse   while   next   color   fast   etc   

原文地址:https://www.cnblogs.com/xumaomao/p/11364244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!