LeetCode 5 最长回文子串

Posted Starzkg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 5 最长回文子串相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/longest-palindromic-substring/

解决方案

class Solution {
    public String longestPalindrome(String s) {
        int start = 0, end = -1;
        StringBuffer t = new StringBuffer("#");
        for (int i = 0; i < s.length(); ++i) {
            t.append(s.charAt(i));
            t.append('#');
        }
        t.append('#');
        s = t.toString();
        List<Integer> arm_len = new ArrayList<Integer>();
        int right = -1, j = -1;
        for (int i = 0; i < s.length(); ++i) {
            int cur_arm_len;
            if (right >= i) {
                int i_sym = j * 2 - i;
                int min_arm_len = Math.min(arm_len.get(i_sym), right - i);
                cur_arm_len = expand(s, i - min_arm_len, i + min_arm_len);
            } else {
                cur_arm_len = expand(s, i, i);
            }
            arm_len.add(cur_arm_len);
            if (i + cur_arm_len > right) {
                j = i;
                right = i + cur_arm_len;
            }
            if (cur_arm_len * 2 + 1 > end - start) {
                start = i - cur_arm_len;
                end = i + cur_arm_len;
            }
        }
        return String.join("", s.substring(start, end).split("#"));
    }

    public int expand(String s, int left, int right) {
        while (left >= 0 && right < s.length() && s.charAt(left) == s.charAt(right)) {
            --left;
            ++right;
        }
        return (right - left - 2) / 2;
    }
}

以上是关于LeetCode 5 最长回文子串的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-5 最长回文子串(动态规划)

LeetCode 5 最长回文子串

5-102-(LeetCode- 5) 最长回文子串

LeetCode 5. 最长回文子串(中)

LeetCode 5. 最长回文子串(中)

leetcode 5 最长回文子串