码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode】Longest Palindromic Substring

时间:2014-12-23 00:07:39      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

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, and there exists one unique longest palindromic substring.

 

Palindrome Partitioning II 几乎一致,二维数组动态规划问题。

需要注意两点

1、使用数组比使用vector of vector节省时间;

2、每次发现当前最优回文串就使用substr取出会耗时间,改成记录起始位置。

class Solution {
public:
    string longestPalindrome(string s) {
        
        int n = s.size();
        int longest = INT_MIN;
        int begin = 0;
        int end = 0;
        string ret = "";
        
        //n*n的二维数组,isPar[i][j]代表s[i,...,j]是否为回文字符串
        //初始化方式为,isPar由n个vector<bool>元素构成,每个vector<bool>由n个false构成
        bool isPar[1000][1000] = {false};
        
        for(int i = 0; i < n; i ++)
            isPar[i][i] = true;

        for(int i = n-1; i >= 0; i --)
        {
            for(int j = i+1; j < n; j ++)
            {
                if(s[i] == s[j])
                {
                    //更新isPar[i][j]
                    if(j == i+1 || isPar[i+1][j-1] == true)
                    {
                        isPar[i][j] = true;
                        if(j-i+1 > longest)
                        {
                            longest = j-i+1;
                            begin = i;
                            end = j;
                        }
                    }
                }
            }
        }
        return s.substr(begin, end-begin+1);
    }
};

技术分享

【LeetCode】Longest Palindromic Substring

标签:

原文地址:http://www.cnblogs.com/ganganloveu/p/4179251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!