博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
计算字符串中回文子串的个数 Palindromic Substrings
阅读量:5893 次
发布时间:2019-06-19

本文共 1441 字,大约阅读时间需要 4 分钟。

  hot3.png

问题:

Given a string, your task is to count how many palindromic substrings in this string.

The substrings with different start indexes or end indexes are counted as different substrings even they consist of same characters.

Example 1:

Input: "abc"Output: 3Explanation: Three palindromic strings: "a", "b", "c".

Example 2:

Input: "aaa"Output: 6Explanation: Six palindromic strings: "a", "a", "a", "aa", "aa", "aaa".

Note:

  1. The input string length won't exceed 1000.

解决:

①  计算字符串中回文子串的个数,使用动态规划解决:

d[i][j]表示从i到j的字符串为是否回文,真则为(1),否则为假(0),

那么d[i][j]为真的前提是:头尾两个字符串相同并且去掉头尾以后的字串也是回文(即d[i+1][j-1]为真),这里面要注意特殊情况,即:去掉头尾以后为空串,所以如果j-i<3,并且头尾相等,也是回文的。

class Solution { //22ms

    public int countSubstrings(String s) {
        int len = s.length();
        int res = 0;
        boolean[][] dp = new boolean[len][len];
        for (int i = len - 1;i >= 0;i --){
            for (int j = i;j < len;j ++){
                dp[i][j] = ((s.charAt(i) == s.charAt(j) && ((j - i < 3) || dp[i + 1][j - 1])));
                if (dp[i][j]){
                    res ++;
                }
            }
        }
        return res;
    }
}

② 从中间向两边递归判断回文字符串。

class Solution { //12ms

    public int countSubstrings(String s) {
        if (s == null || s.length() == 0) return 0;
        int len = s.length();
        int res = 0;
        for (int i = 0;i < len;i ++){
            res += dfs(s,i,i);
            res += dfs(s,i,i + 1);
        }
        return res;
    }
    public int dfs(String s,int left,int right){
        int res = 0;
        while(left >= 0 && right < s.length() && s.charAt(left) == s.charAt(right)){
            left --;
            right ++;
            res ++;
        }
        return res;
    }
}

转载于:https://my.oschina.net/liyurong/blog/1606461

你可能感兴趣的文章
Gridview控件导出Excel之后图片无法显示
查看>>
FastJson
查看>>
[置顶] 小本求职了---实习岗位
查看>>
Oracle中查看所有表和字段以及表注释.字段注释
查看>>
常用编程软件下载地址
查看>>
UVA 10564 - Paths through the Hourglass (dp)
查看>>
鼠标钩子--- 悬浮窗口
查看>>
js同域名下不同文件下使用coookie
查看>>
Web工程师的工具箱 | 酷壳 - CoolShell.cn
查看>>
ASP.NET Web API自身对CORS的支持: EnableCorsAttribute特性背后的故事
查看>>
【转】国家集训队论文分类
查看>>
Eclipse 常用快捷键
查看>>
INDEX--索引页上存放那些数据
查看>>
INDEX--关于索引的琐碎
查看>>
sql查看所有表大小的方法
查看>>
nexus7 1代 刷4.2.2+root[转]
查看>>
推荐一个很好的富文本web编辑器UEditor
查看>>
UNIX网络编程读书笔记:TCP输出、UDP输出和SCTP输出
查看>>
扩展 DbUtility (1)
查看>>
iOS开发UI篇—使用picker View控件完成一个简单的选餐应用
查看>>