newCoderTheWarrior
newCoderTheWarrior
全部文章
题解
未归档(3)
归档
标签
去牛客网
登录
/
注册
newCoderTheWarrior的博客
全部文章
/ 题解
(共1篇)
【Warrior刷题笔记】牛客NC127 最长公共子串 【二分法+滑动窗口】详细注释
题目 来源:牛客 牛客算法 NC127 最长公共 子串 1.描述 给定两个字符串str1和str2,输出两个字符串的最长公共子串 题目保证str1和str2的最长公共子串存在且唯一。 2.示例 示例1 输入:"1AB2345CD", "12345EF" 返回值:"2345" 解题思路 此...
C++
二分查找
滑动窗口
字符串
字符匹配
2021-12-25
0
413