647 Palindromic Substrings
Problem
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: The input string length won't exceed 1000.
Solutons
class Solution {
public int countSubstrings(String s) {
int count = 0;
for (int i = 0; i < s.length(); i ++) {
int left = i, right = i;
count += process(s, i, i);
if (i < s.length() - 1) {
count += process(s, i, i + 1);
}
}
return count;
}
private int process(String s, int left, int right) {
int count = 0;
while (left >= 0 && right < s.length()) {
if (s.charAt(left) != s.charAt(right)) {
break;
}
count ++;
left --;
right ++;
}
return count;
}
}