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

LeetCode -- 5 -- 最长回文子串

时间:2018-06-30 18:57:34      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:ali   end   ++   字符   子串   假设   rom   for   style   

给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为1000。

示例 1:

输入: "babad"
输出: "bab"
注意: "aba"也是一个有效答案。

示例 2:

输入: "cbbd"
输出: "bb"

std::string longestPalindrome(std::string s) 
{        
    const int len = s.size();
    if(1 >= len) 
        return s;
    if(2 == len && s[0] == s[1]) 
        return s;
    
    std::cout << "size of string : " << len << std::endl;
    
    std::string temp;
    for (int i = 0; i < len; i++)
    {
        temp.push_back(#);
        temp.push_back(s[i]);
    }
    temp.push_back(#);
    temp.push_back(\0);
    
    int max = 0;
    int idx = 0;
    for (int i = 0; i < 2 * len + 1; i++)
    {
        int j = i;
        int z = i;
        int count = 0;

        while ((++z) < (2 * len + 1) && (--j >= 0) && (temp[z] == temp[j]))
        {
            count++;
            if (count > max)
            {
                max = count;
                idx = i;
            }
        }
    }
    return s.substr((idx - max) / 2, max);

LeetCode -- 5 -- 最长回文子串

标签:ali   end   ++   字符   子串   假设   rom   for   style   

原文地址:https://www.cnblogs.com/fanshuai/p/9248186.html

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