摘要: /* * @lc app=leetcode.cn id=234 lang=cpp * * [234] 回文链表 * * https://leetcode-cn.com/problems/palindrome-linked-list/description/ * * algorithms * Easy 阅读全文
posted @ 2021-05-18 20:18 鸭子船长 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 本文用pat表示模式串,长度为M,txt表示文本串,长度为N。KMP 算法是在txt中查找子串pat,如果存在,返回这个子串的起始索引,否则返回 -1。 一、KMP 算法概述 首先还是简单介绍一下 KMP 算法和暴力匹配算法的不同在哪里,难点在哪里,和动态规划有啥关系。 暴力的字符串匹配算法很容易写 阅读全文
posted @ 2021-05-18 16:07 鸭子船长 阅读(568) 评论(0) 推荐(0) 编辑