美文网首页
2020-08-25 力扣题五

2020-08-25 力扣题五

作者: Joyner2018 | 来源:发表于2020-08-25 13:09 被阅读0次

最长回文数

class Solution {
public:
    string longestPalindrome(string s) {
        if (s == "")return "";
        int len = s.length();
        int index = 0,maxL=0,begin=0;
        while (index < len) {
            int right = index, left = index;
            while (index < len&&s[index + 1] == s[index]) {
                index++;
                right++;
            }
            while (right < len&&left >= 0 && s[right] == s[left]) {
                right++;
                left--;
            }
            right--, left++;
            if (right-left+ 1 > maxL) {
            maxL = right - left + 1;
            begin = left;
            }
            index++;
        }
        return s.substr(begin, maxL);
    }
};

相关文章

  • 2020-08-25 力扣题五

    最长回文数

  • 2020-08-25 力扣题六

    Z型变换

  • 399. 除法求值(Python)

    题目 难度:★★★★☆类型:图方法:深度优先搜索 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题...

  • 个人技术点图片介绍

    算法:力扣第一题:https://www.jianshu.com/p/d578de7d1dc9力扣第二题:http...

  • 413. 等差数列划分(Python)

    题目 难度:★★☆☆☆类型:数组方法:动态规划 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目...

  • 416. 分割等和子集(Python)

    题目 难度:★★★☆☆类型:数组方法:动态规划 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目...

  • 397. 整数替换(Python)

    题目 难度:★★☆☆☆类型:数组方法:数学 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目录 ...

  • 398. 随机数索引(Python)

    题目 难度:★★☆☆☆类型:数组方法:数学 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目录 ...

  • 396. 旋转函数(Python)

    题目 难度:★★★☆☆类型:数组方法:动态规划 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目...

  • 394. 字符串解码(Python)

    题目 难度:★★★☆☆类型:字符串方法:栈 力扣链接请移步本题传送门更多力扣中等题的解决方案请移步力扣中等题目录 ...

网友评论

      本文标题:2020-08-25 力扣题五

      本文链接:https://www.haomeiwen.com/subject/stzajktx.html