Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.

求字符串中的最大回文子串(从左往右和从右往左读一样的子串)。

Example:

  1. Input: "babad"
  2.  
  3. Output: "bab"
  4.  
  5. Note: "aba" is also a valid answer.

Example:

  1. Input: "cbbd"
  2.  
  3. Output: "bb"

解法1:

  遍历每个字符,以该字符为中心,往两边扩散寻找回文子串。应注意奇偶情况,比如"bob"是奇数形式的回文,"noon"就是偶数形式的回文,两种形式的回文都要搜索。该算法时间复杂度为O(n2)。

  1. public class Solution {
  2. public String longestPalindrome(String s) {
  3. int maxBegin = 0; // 最大回文子串的起始点
  4. int maxLength = 0; // 最大回文子串的长度
  5. int currLength = 0; // 以当前字符为中心的回文子串长度
  6.  
  7. for (int i = 0; i < s.length() - 1; i++) {
  8. // 以当前字符为中心寻找回文子串
  9. currLength = searchPalindrome(s, i, i);
  10. if (currLength > maxLength) {
  11. maxLength = currLength;
  12. maxBegin = i - (currLength >> 1);
  13. }
  14. // 如果当前字符和下一个字符相同,还应寻找以这两个字符为中心的回文子串
  15. if (s.charAt(i) == s.charAt(i + 1)) {
  16. currLength = searchPalindrome(s, i, i + 1);
  17. if (currLength > maxLength) {
  18. maxLength = currLength;
  19. maxBegin = i + 1 - (currLength >> 1);
  20. }
  21. }
  22.  
  23. }
  24.  
  25. if (maxLength == 0) maxLength = s.length();
  26.  
  27. return s.substring(maxBegin, maxBegin + maxLength);
  28. }
  29.  
  30. public int searchPalindrome(String s, int left, int right) {
  31. int step = 1;
  32. while ((left - step >= 0) && (right + step < s.length())) {
  33. if (s.charAt(left - step) != s.charAt(right + step))
  34. break;
  35. step++;
  36. }
  37. return right - left + (step << 1) - 1;
  38. }
  39. }

解法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] —> ....

  1. public class Solution {
  2. public String longestPalindrome(String s) {
  3. boolean[][] isPal = new boolean[s.length()][s.length()];
  4. int left = 0;
  5. int right = 0;
  6.  
  7. for (int j = 0; j < s.length(); j++) {
  8. for (int i = 0; i < j; i++) {
  9. isPal[i][j] = (s.charAt(i) == s.charAt(j)) && (j - i < 2 || isPal[i + 1][j - 1]);
  10. if (isPal[i][j] && (j - i > right - left)) {
  11. left = i;
  12. right = j;
  13. }
  14. }
  15. isPal[j][j] = true;
  16. }
  17.  
  18. return s.substring(left, right + 1);
  19. }
  20. }

解法3:

  最后要来的就是大名鼎鼎的马拉车算法Manacher's Algorithm,这个算法的神奇之处在于将时间复杂度提升到了O(n)这种逆天的地步,而算法本身也设计的很巧妙,很值得掌握,具体算法参见:Manacher算法总结 和 Manacher's Algorithm 马拉车算法

  1. public class Solution {
  2. public String longestPalindrome(String s) {
  3.  
  4. // 字符串穿插"#",同时加头加尾防止越界
  5. StringBuilder sb = new StringBuilder("@#");
  6. for (int i = 0; i < s.length(); i++) {
  7. sb.append(s.charAt(i)).append("#");
  8. }
  9. sb.append("$");
  10.  
  11. int[] len = new int[sb.length()];
  12. int maxCenter = 0; // 记录最大回文子串的中心位置
  13. int maxLength = 0; // 记录最大回文子串的半径
  14. int id = 0; // 记录当前计算过的右边界所属的回文子串中心
  15. int mx = 0; // 记录当前计算过的右边界
  16.  
  17. for (int i = 1; i < sb.length() - 1; i++) {
  18. len[i] = i < mx ? Math.min(len[2 * id - i], mx - i + 1) : 1;
  19. while (sb.charAt(i - len[i]) == sb.charAt(i + len[i]))
  20. len[i]++;
  21.  
  22. if (mx < i + len[i] - 1) {
  23. mx = i + len[i] - 1;
  24. id = i;
  25. }
  26. if (maxLength < len[i]) {
  27. maxLength = len[i];
  28. maxCenter = i;
  29. }
  30. }
  31. return s.substring((maxCenter - maxLength) / 2, (maxCenter - maxLength) / 2 + maxLength - 1);
  32. }
  33. }

  

[LeetCode] 5. Longest Palindromic Substring ☆☆☆☆的更多相关文章

  1. LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法

    LeetCode(4) || Longest Palindromic Substring 与 Manacher 线性算法 题记 本文是LeetCode题库的第五题,没想到做这些题的速度会这么慢,工作之 ...

  2. Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法)

    Leetcode 5. Longest Palindromic Substring(最长回文子串, Manacher算法) Given a string s, find the longest pal ...

  3. 求最长回文子串 - leetcode 5. Longest Palindromic Substring

    写在前面:忍不住吐槽几句今天上海的天气,次奥,鞋子里都能养鱼了...裤子也全湿了,衣服也全湿了,关键是这天气还打空调,只能瑟瑟发抖祈祷不要感冒了.... 前后切了一百零几道leetcode的题(sol ...

  4. LeetCode 5 Longest Palindromic Substring(最长子序列)

    题目来源:https://leetcode.com/problems/longest-palindromic-substring/ Given a string S, find the longest ...

  5. 【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 ...

  6. leetcode:Longest Palindromic Substring(求最大的回文字符串)

    Question:Given a string S, find the longest palindromic substring in S. You may assume that the maxi ...

  7. [LeetCode][Python]Longest Palindromic Substring

    # -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/longest ...

  8. 【LeetCode】Longest Palindromic Substring 解题报告

    DP.KMP什么的都太高大上了.自己想了个朴素的遍历方法. [题目] Given a string S, find the longest palindromic substring in S. Yo ...

  9. [LeetCode] 5. Longest Palindromic Substring 最长回文子串

    Given a string s, find the longest palindromic substring in s. You may assume that the maximum lengt ...

  10. 最长回文子串-LeetCode 5 Longest Palindromic Substring

    题目描述 Given a string S, find the longest palindromic substring in S. You may assume that the maximum ...

随机推荐

  1. Kali渗透测试-SNMP

    1.snmpwalk -v指定snmpwalk版本 -c指定密码 2.snmp-check 获取系统信息,主机名,操作系统及架构 获取用户账户信息 获取网络信息 获取网络接口信息 IP信息 路由信息 ...

  2. JS中Document节点总结

    document对象是documentHTML的一个实例,也是window对象的一个属性,因此可以将document对象作为一个全局对象来访问. Document节点的子节点可以是DocumentTy ...

  3. Python中的__future__

    在Python中,你如果在某一个版本的Python想使用未来版本中的功能,可以使用如下语法实现: from __future__ import futurename 这条语句必须放在module文件的 ...

  4. java多线程三之线程协作与通信实例

    多线程的难点主要就是多线程通信协作这一块了,前面笔记二中提到了常见的同步方法,这里主要是进行实例学习了,今天总结了一下3个实例: 1.银行存款与提款多线程实现,使用Lock锁和条件Condition. ...

  5. c# 编译的dll看不见注释问题

    1.项目属性---->生成----->勾选XML文档文件: 2.使用的时候该文件和dll放在一块.

  6. iOS 出现错误reason: image not found的解决方案

    在制作framework时遇到真机运行时导致的reason: image not found允许崩溃的问题,下面是我的解决方案: 首先我们分析一下出现这种情况的原因,原因就是framework找不到镜 ...

  7. phpcms V9如何判断用户是否登录以及登陆后的标签写法问题

    首先要获取userid {php$userid=param::get_cookie('_userid');}​ 然后再判断是否为空 {if $userid}...这里写已经登录之后的代码...{els ...

  8. 特殊符号存入mysql数据库时报错:Incorrect string value: '\xF0\x9F\x98\x84\xF0\x9F的解决方法

    问题描述:从新浪微博抓取消息保存到MySQL数据中,对应数据库字段为varchar,字符编码utf-8.部分插入成功,部分插入失败,报错如标题. 在网上查询,有人说是编码问题,建议修改编码格式,比如改 ...

  9. perf record -c

    如果perf record -c -c后面接的是sample_period,也就是说你让这个事件没 我的loop进程一直在执行,我的CPU的频率是2.6G hz,也就是说每一秒会有2,600,000, ...

  10. wpf拖拽

    简单拖拽的实现是,实现源控件的MouseDown事件,和目标控件Drop事件.调用DragDrop.DoDragDrop()以启动拖放操作,DragDrop.DoDragDrop()函数接受三个参数: ...