码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] Palindromic Substrings

时间:2018-01-20 16:25:02      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:pos   exp   gpo   exce   code   lan   public   har   blog   

 

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: 3
Explanation: Three palindromic strings: "a", "b", "c".

 

Example 2:

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

Note:

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

找出字符串中的所有回文子串。

1、首先判断回文

2、利用substr将字符串分割后,进行判断统计

class Solution {
public:
    int countSubstrings(string s) {
        int res = 0;
        for (int i = 0; i < s.size(); i++) {
            for (int j = 1; j <= s.size() - i; j++) {
                if (isPalindromic(s.substr(i, j)))
                    res++;
            }
        }
        return res;
    }
    bool isPalindromic(string str) {
        int lo = 0, hi = str.size() - 1;
        while (lo < hi) {
            if (str[lo] != str[hi]) {
                return false;
            }
            else {
                lo++;
                hi--;
            }
        }
        return true;
    }
};
// 204 ms

 

[LeetCode] Palindromic Substrings

标签:pos   exp   gpo   exce   code   lan   public   har   blog   

原文地址:https://www.cnblogs.com/immjc/p/8320777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!