回文子串(动态规划)

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);
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值