当前位置:   article > 正文

回文子串(动态规划)_动态规划回文子串

动态规划回文子串

Longest Palindromic Substring

A.题意

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

题目的要求是给你一个字符串s(s最长的时候长度1000),要你找出这个字符串的最长子串。

B.思路

对于这道题我采用动态规划的思路,用表格记录第i个字符到第j个字符是否为回文串,然后从1到size检测以每个字符开头的某个长度字符串是否为回文串,借助刚刚那个表格,如果检测的子串头尾相同且根据表格该子串除头尾后为回文串则该子串为回文串

C.代码实现

class Solution {
public:
    string longestPalindrome(string s) {
        bool table[1000][1000] = {false};
        int size = s.length();
        int max = 1;
        int start = 0;
        for (int i = 0;i < size;i++)
        {
            table[i][i] = true;
        }
        for (int len = 2;len <= size;len++)
        {
            for (int i = 0;i < size - len + 1;i++)
            {
                int j = i + len - 1;
                if (len == 2 && s[i] == s[j])
                {
                    table[i][j] = true;
                    start = i;
                    max = len;
                }
                else if(s[i] == s[j] && table[i + 1][j - 1])
                {
                    table[i][j] = true;
                    start = i;
                    max = len;
                }
            }
        }
        return s.substr(start,max);
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/660170
推荐阅读
相关标签
  

闽ICP备14008679号