题解 | #牛群编号的回文顺序#

牛群编号的回文顺序

https://www.nowcoder.com/practice/e41428c80d48458fac60a35de44ec528

class Solution {
public:
    // 解题思路:1,利用快慢指针找到链表的中点
    //          2,利用定义的反转链表函数,把中点以后的链表反转
    //          3,利用指针遍历来比较中点前后的链表
    // 链表反转
    ListNode* ReverseList(ListNode* h){
        if(h == nullptr || h->next == nullptr){
            return h;
        }
        ListNode* pre = nullptr;
        ListNode* currrent = h;
        while(currrent){
            ListNode* temp = currrent->next;
            currrent->next = pre;
            pre = currrent;
            currrent = temp;
        }
        return pre;
    }

    bool isPalindrome(ListNode* head) {
        // write code here
        if(head == nullptr || head->next == nullptr){
            return true;
        }
        // 利用快慢指针,一步两步地获取链表的中点
        ListNode* midle = head;
        ListNode* right = head;
        while(right != nullptr && right->next != nullptr){
            midle = midle->next;
            right = right->next->next;
        }
        // 从中点开始反转操作
        ListNode* RL = ReverseList(midle);
        // 开始遍历比较
        while(RL != nullptr){
            if(head->val != RL->val){
                return false;
            }
            RL = RL->next;
            head = head->next;
        }
        return true;
    }
};

全部评论

相关推荐

头像
11-07 01:12
重庆大学 Java
精致的小松鼠人狠话不多:签哪了哥
点赞 评论 收藏
分享
勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务