阅读 58

LeetCode647 Palindromic SubStrings(回文子串)

题目

Given a string s, return the number of palindromic substrings in it. 
 A string is a palindrome when it reads the same backward as forward. 
 A substring is a contiguous sequence of characters within the string. 

 Example 1: 
Input: s = "abc"
Output: 3
Explanation: Three palindromic strings: "a", "b", "c".

 Example 2: 
Input: s = "aaa"
Output: 6
Explanation: Six palindromic strings: "a", "a", "a", "aa", "aa", "aaa".

 Constraints: 
 1 <= s.length <= 1000 
 s consists of lowercase English letters. 

方法

Manacher法

  • 时间复杂度:O(n)
  • 空间复杂度:O(n)
class Solution {
    public int countSubstrings(String s) {
        String s1 = preProcess(s);
        int length = s1.length();
        int c=0,maxR=0,ans=0;
        int[] p = new int[length];
        for(int i=1;i=0&&right

原文:https://www.cnblogs.com/ermiao-zy/p/15343426.html

文章分类
百科问答
版权声明:本站是系统测试站点,无实际运营。本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 XXXXXXo@163.com 举报,一经查实,本站将立刻删除。
相关推荐