博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
647. Palindromic Substrings
阅读量:6548 次
发布时间:2019-06-24

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

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".
class Solution {public:    int countSubstrings(string s) {        int cnt = 0;        int n = s.size();        for(int i = 0;i
=0&&right

 

转载于:https://www.cnblogs.com/jxr041100/p/8042394.html

你可能感兴趣的文章
[深入理解文件系统之五] 从SVR3 到SVR4
查看>>
IE6\7 下 td colspan bug
查看>>
《白帽子讲WEB安全》学习笔记之第9章 认证与会话管理
查看>>
搭建 Python 开发环境
查看>>
WindowsMobile应该如何发展?-2(未完待续)
查看>>
几句话就能让你明白:ACL 访问控制列表(一)
查看>>
DISM命令
查看>>
centos7安装dhcp服务器并由客户端动态获取IP地址
查看>>
easyui datagrid 表格适应屏幕
查看>>
MongoDB安装
查看>>
rapidjson常见使用示例
查看>>
kafka producer实例及原理分析
查看>>
程控交换机分机同时拨打外线的方法
查看>>
Python 的深浅拷贝 终于明白了
查看>>
应用为王 从Zpad看“中国创造”
查看>>
以DH的方式实现非对称加密
查看>>
avascript实现页面刷新
查看>>
人工智能下的可穿戴设备 如何争夺物联网的入口
查看>>
FBI网站被黑致数据泄露?官方称这根本是个骗局
查看>>
不法分子散播奥运诈骗链接 伪造APP窃取个人信息
查看>>