当前位置:网站首页>力扣(LeetCode)214. 打家劫舍 II(2022.08.02)
力扣(LeetCode)214. 打家劫舍 II(2022.08.02)
2022-08-03 06:41:00 【ChaoYue_miku】
给定一个字符串 s,你可以通过在字符串前面添加字符将其转换为回文串。找到并返回可以用这种方式转换的最短回文串。
示例 1:
输入:s = “aacecaaa”
输出:“aaacecaaa”
示例 2:
输入:s = “abcd”
输出:“dcbabcd”
提示:
0 <= s.length <= 5 * 104
s 仅由小写英文字母组成
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/shortest-palindrome
方法一:KMP算法
C++提交内容:
class Solution {
public:
string shortestPalindrome(string s) {
int n = s.size();
vector<int> fail(n, -1);
for (int i = 1; i < n; ++i) {
int j = fail[i - 1];
while (j != -1 && s[j + 1] != s[i]) {
j = fail[j];
}
if (s[j + 1] == s[i]) {
fail[i] = j + 1;
}
}
int best = -1;
for (int i = n - 1; i >= 0; --i) {
while (best != -1 && s[best + 1] != s[i]) {
best = fail[best];
}
if (s[best + 1] == s[i]) {
++best;
}
}
string add = (best == n - 1 ? "" : s.substr(best + 1, n));
reverse(add.begin(), add.end());
return add + s;
}
};
边栏推荐
猜你喜欢
随机推荐
【卫朋】硬件创业:营销与开发同行
Data warehouse buried point system and attribution practice
keepalived安装部署
第四章:架构,Architecture
升级
模型训练前后显卡占用对比、多卡训练GPU占用分析【一文读懂】
分治法求解中位数
用代码构建UI界面
【OpenCV】 - 显示图像API之imshow()对不同位深度(数据类型)的图像的处理方法
- display image API OpenCV 】 【 imshow () to a depth (data type) at different image processing methods
Shell脚本之一键安装mysql
调用feign报错openfeign/feign-core/10.4.0/feign-core-10.4.0.jar
PMP每日一练 | 考试不迷路-8.2(包含敏捷+多选)
Flutter | 判断 Text 组件是否显示完
JS 原型原型链
信息学奥赛一本通T1452:Keyboarding
ORB-SLAM2提取特征点
请求与响应:响应
神经网络原理及代码实现
C语言版本和GCC版本