题解 | #判断一个链表是否为回文结构#

判断一个链表是否为回文结构

https://www.nowcoder.com/practice/3fed228444e740c8be66232ce8b87c2f

/**
 * struct ListNode {
 *  int val;
 *  struct ListNode *next;
 *  ListNode(int x) : val(x), next(nullptr) {}
 * };
 */
#include <bits/types/stack_t.h>
class Solution {
  public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head ListNode类 the head
     * @return bool布尔型
     */
    // 虽然能过,但是我自己感觉怪怪的,不知道哪里不对劲,这个还是别看了
    // bool isPail(ListNode* head) {
    //     if(head->next==nullptr) return true;
    //     ListNode* slow = head;
    //     ListNode* fast = head;
    //     stack<int> st;
    //     while (fast && fast->next) {
    //         st.push(slow->val);
    //         slow = slow->next;
    //         fast = fast->next->next;
    //     }
    //     cout<<"st.top() : "<< st.top() << "   slow->val"<< slow->val<<endl;
    //     while(slow && !st.empty()) {

    //         if(st.top() == slow->val) {
    //             st.pop();
    //         }
    //         slow=slow->next;
    //     }
    //     if(st.empty()) {
    //         return true;
    //     }
    //     return false;
    // }
  	// 方式一
    //1.用快慢指针找到中点,然后借助判断回文,这里需要注意链表长度为奇数的时候,此时慢指针指向链表的中间节点,需要再向前走一步
    // bool isPail(ListNode* head) {
    //     ListNode* slow = head;
    //     ListNode* fast = head;
    //     stack<int> st;
    //     // while (fast->next && fast->next->next) {
    //     while(fast && fast->next) {
    //         st.push(slow->val);
    //         slow = slow->next;
    //         fast = fast->next->next;
    //     }
    //     if(fast){ //链表长度为奇数的时候,慢指针需要多走一步,即走过中间节点
    //         slow = slow->next;
    //     }
    //     while (slow) {
    //         if(st.top() != slow->val){
    //             return false;
    //         }
    //         slow = slow->next;
    //         st.pop();
    //     }
    //     if(st.empty()){
    //         return true;
    //     }
    //     else{
    //         return false;
    //     }
    // }
	// 方式二
    bool isPail(ListNode* head) {
        ListNode* slow = head;
        ListNode* fast = head;
        ListNode* pre = nullptr;
        while (fast && fast->next) {
            fast = fast->next->next;
            // slow = slow->next 就在这四句代码中实现了,同时实现了反转前半部分链表
            ListNode* next = slow->next;
            slow->next = pre;
            pre = slow;
            slow = next;
        }
        if (fast) slow = slow->next;
        while (slow) {
            if (pre == nullptr || pre->val != slow->val) {
                return false;
            }
            pre = pre->next;
            slow = slow->next;
        }
        return true;
    }
};

全部评论

相关推荐

11-24 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
沉淀一会:**圣经 1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务