[LeetCode] 5. Longest Palindromic Substring ☆☆☆☆
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.
求字符串中的最大回文子串(从左往右和从右往左读一样的子串)。
Example:
- Input: "babad"
- Output: "bab"
- Note: "aba" is also a valid answer.
Example:
- Input: "cbbd"
- Output: "bb"
解法1:
遍历每个字符,以该字符为中心,往两边扩散寻找回文子串。应注意奇偶情况,比如"bob"是奇数形式的回文,"noon"就是偶数形式的回文,两种形式的回文都要搜索。该算法时间复杂度为O(n2)。
- public class Solution {
- public String longestPalindrome(String s) {
- int maxBegin = 0; // 最大回文子串的起始点
- int maxLength = 0; // 最大回文子串的长度
- int currLength = 0; // 以当前字符为中心的回文子串长度
- for (int i = 0; i < s.length() - 1; i++) {
- // 以当前字符为中心寻找回文子串
- currLength = searchPalindrome(s, i, i);
- if (currLength > maxLength) {
- maxLength = currLength;
- maxBegin = i - (currLength >> 1);
- }
- // 如果当前字符和下一个字符相同,还应寻找以这两个字符为中心的回文子串
- if (s.charAt(i) == s.charAt(i + 1)) {
- currLength = searchPalindrome(s, i, i + 1);
- if (currLength > maxLength) {
- maxLength = currLength;
- maxBegin = i + 1 - (currLength >> 1);
- }
- }
- }
- if (maxLength == 0) maxLength = s.length();
- return s.substring(maxBegin, maxBegin + maxLength);
- }
- public int searchPalindrome(String s, int left, int right) {
- int step = 1;
- while ((left - step >= 0) && (right + step < s.length())) {
- if (s.charAt(left - step) != s.charAt(right + step))
- break;
- step++;
- }
- return right - left + (step << 1) - 1;
- }
- }
解法2:
此题还可以用动态规划Dynamic Programming来解,我们维护一个二维数组dp,其中dp[i][j]表示字符串区间[i, j]是否为回文串,当i = j时,只有一个字符,肯定是回文串,如果i = j + 1,说明是相邻字符,此时需要判断s[i]是否等于s[j],如果i和j不相邻,即i - j >= 2时,除了判断s[i]和s[j]相等之外,dp[j + 1][i - 1]若为真,就是回文串,通过以上分析,可以写出递推式如下:
dp[i, j] = 1 if i == j
= s[i] == s[j] if j = i + 1
= s[i] == s[j] && dp[i + 1][j - 1] if j > i + 1
判断顺序:s[0][0] —> s[0][1] —> s[1][1] —> s[0][2] —> s[1][2] —> s[2][2] —> s[0][3] —> ....
- public class Solution {
- public String longestPalindrome(String s) {
- boolean[][] isPal = new boolean[s.length()][s.length()];
- int left = 0;
- int right = 0;
- for (int j = 0; j < s.length(); j++) {
- for (int i = 0; i < j; i++) {
- isPal[i][j] = (s.charAt(i) == s.charAt(j)) && (j - i < 2 || isPal[i + 1][j - 1]);
- if (isPal[i][j] && (j - i > right - left)) {
- left = i;
- right = j;
- }
- }
- isPal[j][j] = true;
- }
- return s.substring(left, right + 1);
- }
- }
解法3:
最后要来的就是大名鼎鼎的马拉车算法Manacher's Algorithm,这个算法的神奇之处在于将时间复杂度提升到了O(n)这种逆天的地步,而算法本身也设计的很巧妙,很值得掌握,具体算法参见:Manacher算法总结 和 Manacher's Algorithm 马拉车算法。
- public class Solution {
- public String longestPalindrome(String s) {
- // 字符串穿插"#",同时加头加尾防止越界
- StringBuilder sb = new StringBuilder("@#");
- for (int i = 0; i < s.length(); i++) {
- sb.append(s.charAt(i)).append("#");
- }
- sb.append("$");
- int[] len = new int[sb.length()];
- int maxCenter = 0; // 记录最大回文子串的中心位置
- int maxLength = 0; // 记录最大回文子串的半径
- int id = 0; // 记录当前计算过的右边界所属的回文子串中心
- int mx = 0; // 记录当前计算过的右边界
- for (int i = 1; i < sb.length() - 1; i++) {
- len[i] = i < mx ? Math.min(len[2 * id - i], mx - i + 1) : 1;
- while (sb.charAt(i - len[i]) == sb.charAt(i + len[i]))
- len[i]++;
- if (mx < i + len[i] - 1) {
- mx = i + len[i] - 1;
- id = i;
- }
- if (maxLength < len[i]) {
- maxLength = len[i];
- maxCenter = i;
- }
- }
- return s.substring((maxCenter - maxLength) / 2, (maxCenter - maxLength) / 2 + maxLength - 1);
- }
- }
[LeetCode] 5. Longest Palindromic Substring ☆☆☆☆的更多相关文章
- LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法
LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法 题记 本文是LeetCode题库的第五题,没想到做这些题的速度会这么慢,工作之 ...
- Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法)
Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法) Given a string s, find the longest pal ...
- 求最长回文子串 - leetcode 5. Longest Palindromic Substring
写在前面:忍不住吐槽几句今天上海的天气,次奥,鞋子里都能养鱼了...裤子也全湿了,衣服也全湿了,关键是这天气还打空调,只能瑟瑟发抖祈祷不要感冒了.... 前后切了一百零几道leetcode的题(sol ...
- LeetCode 5 Longest Palindromic Substring(最长子序列)
题目来源:https://leetcode.com/problems/longest-palindromic-substring/ Given a string S, find the longest ...
- 【JAVA、C++】LeetCode 005 Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum lengt ...
- leetcode:Longest Palindromic Substring(求最大的回文字符串)
Question:Given a string S, find the longest palindromic substring in S. You may assume that the maxi ...
- [LeetCode][Python]Longest Palindromic Substring
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/longest ...
- 【LeetCode】Longest Palindromic Substring 解题报告
DP.KMP什么的都太高大上了.自己想了个朴素的遍历方法. [题目] Given a string S, find the longest palindromic substring in S. Yo ...
- [LeetCode] 5. Longest Palindromic Substring 最长回文子串
Given a string s, find the longest palindromic substring in s. You may assume that the maximum lengt ...
- 最长回文子串-LeetCode 5 Longest Palindromic Substring
题目描述 Given a string S, find the longest palindromic substring in S. You may assume that the maximum ...
随机推荐
- Kali渗透测试-SNMP
1.snmpwalk -v指定snmpwalk版本 -c指定密码 2.snmp-check 获取系统信息,主机名,操作系统及架构 获取用户账户信息 获取网络信息 获取网络接口信息 IP信息 路由信息 ...
- JS中Document节点总结
document对象是documentHTML的一个实例,也是window对象的一个属性,因此可以将document对象作为一个全局对象来访问. Document节点的子节点可以是DocumentTy ...
- Python中的__future__
在Python中,你如果在某一个版本的Python想使用未来版本中的功能,可以使用如下语法实现: from __future__ import futurename 这条语句必须放在module文件的 ...
- java多线程三之线程协作与通信实例
多线程的难点主要就是多线程通信协作这一块了,前面笔记二中提到了常见的同步方法,这里主要是进行实例学习了,今天总结了一下3个实例: 1.银行存款与提款多线程实现,使用Lock锁和条件Condition. ...
- c# 编译的dll看不见注释问题
1.项目属性---->生成----->勾选XML文档文件: 2.使用的时候该文件和dll放在一块.
- iOS 出现错误reason: image not found的解决方案
在制作framework时遇到真机运行时导致的reason: image not found允许崩溃的问题,下面是我的解决方案: 首先我们分析一下出现这种情况的原因,原因就是framework找不到镜 ...
- phpcms V9如何判断用户是否登录以及登陆后的标签写法问题
首先要获取userid {php$userid=param::get_cookie('_userid');} 然后再判断是否为空 {if $userid}...这里写已经登录之后的代码...{els ...
- 特殊符号存入mysql数据库时报错:Incorrect string value: '\xF0\x9F\x98\x84\xF0\x9F的解决方法
问题描述:从新浪微博抓取消息保存到MySQL数据中,对应数据库字段为varchar,字符编码utf-8.部分插入成功,部分插入失败,报错如标题. 在网上查询,有人说是编码问题,建议修改编码格式,比如改 ...
- perf record -c
如果perf record -c -c后面接的是sample_period,也就是说你让这个事件没 我的loop进程一直在执行,我的CPU的频率是2.6G hz,也就是说每一秒会有2,600,000, ...
- wpf拖拽
简单拖拽的实现是,实现源控件的MouseDown事件,和目标控件Drop事件.调用DragDrop.DoDragDrop()以启动拖放操作,DragDrop.DoDragDrop()函数接受三个参数: ...