当前位置: 首页 > article >正文

leetcode回文链表

leetcode 回文链表

题目

在这里插入图片描述

题解

两种方式进行题解

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
 //第一种方式 将链表按照顺序存储再数组中, 然后一个再前面进行遍历, 一个再后面进行遍历,不相等的话就返回false, 完全遍历完了 之后再返回true
// class Solution {
// public:
//     bool isPalindrome(ListNode* head) {
//         if (head == nullptr || head->next == nullptr) return true;
//         vector<int> ans;
//         while (head) {
//             ans.push_back(head->val);
//             head= head->next;
//         }
//         for (int i = 0, j = ans.size() - 1; i < j; i++, j--) {
//             if (ans[i] != ans[j]) {
//                 return false;
//             }
//         }
//         return true;
//     }
// };


//第二种方式, 先找到中间位置 ,然后把后面的链表反转过来, 之后在和前面进行比较, 要是不相同的话就返回false, 反之返回true
class Solution {
public:
    bool isPalindrome(ListNode* head) {
        if (head == nullptr || head->next == nullptr) return true;

        // Step 1: Find the middle of the linked list using slow and fast pointers
        ListNode *slow = head, *fast = head;
        while (fast != nullptr && fast->next != nullptr) {
            slow = slow->next;
            fast = fast->next->next;
        }

        // Step 2: Reverse the second half of the linked list
        ListNode* prev = nullptr;
        while (slow != nullptr) {
            ListNode* temp = slow->next;
            slow->next = prev;
            prev = slow;
            slow = temp;
        }

        // Step 3: Compare the first and second half nodes
        ListNode* left = head;
        ListNode* right = prev;
        while (right != nullptr) {
            if (left->val != right->val) return false;
            left = left->next;
            right = right->next;
        }

        // (Optional) Step 4: Restore the second half back (if needed)
        // You can implement this part if the problem requires you to keep the original structure.

        return true;
    }
};


http://www.kler.cn/a/291428.html

相关文章:

  • 吴恩达深度学习笔记:序列模型(Sequence Models) 1.3-1.4
  • 视频融合×室内定位×数字孪生
  • C++ 并发专题 - 线程安全的单例模式
  • 4-7-1.C# 数据容器 - LinkedList(LinkedList 的定义、LinkedList 结点的遍历、LinkedList 的常用方法)
  • Altenergy电力系统 status_zigbee SQL注入漏洞复现(CVE-2024-11305)
  • Nginx Spring boot指定域名跨域设置
  • 【动态规划-背包问题】
  • 黑马程序员Python数据挖掘|1Jupyter Notebook的使用
  • Spring介绍和Log4j2
  • Flask的上下文管理流程
  • 探索前沿科技:在本地系统上安装和使用Style TTS2进行高质量语音合成
  • 交换机堆叠配置
  • js vue 获取当前日志转为年月日
  • Linux操作系统 :文件管理(实验报告)
  • Java MVC
  • Netty实现WebSocket及分布式解决方案
  • 构建专业技能:MySQL数据备份策略的培训与实践
  • Notepad++ 安装部署教程
  • Pyecharts 数据可视化大屏:创建引人注目的数据展示
  • 合规数知法用法平台如何利用AI技术助力企业法律合规管理
  • MySQL数据备份策略执行:全面实现指南
  • stable diffusion的安装
  • HTTP/3
  • Redis 集群:引领企业级 NoSQL 数据库新潮流
  • 【Python】HTMLParser:HTML解析
  • opencv --- 人脸识别、人脸比对