• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
neverlandly
博客园    首页    新随笔    联系   管理    订阅  订阅

Leetcode: Palindromic Substrings

647. Palindromic Substrings
Medium

1656

85

Favorite

Share
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.
 

 

DP:

 1 class Solution {
 2     public int countSubstrings(String s) {
 3         if (s == null || s.length() == 0) return 0;
 4         int res = 0;
 5         boolean[][] dp = new boolean[s.length()][s.length()];
 6         for (int i = s.length() - 1; i >= 0; i --) {
 7             for (int j = i; j < s.length(); j ++) {
 8                 if (s.charAt(i) == s.charAt(j) && (j - i <= 2 || dp[i + 1][j - 1])) {
 9                     dp[i][j] = true;
10                     res ++;
11                 }
12             }
13         }
14         return res;
15     }
16 }

Extend palindrome: (better)

 1 public class Solution {
 2     int count = 0;
 3     
 4     public int countSubstrings(String s) {
 5         if (s == null || s.length() == 0) return 0;
 6         
 7         for (int i = 0; i < s.length(); i++) { // i is the mid point
 8             extendPalindrome(s, i, i); // odd length;
 9             extendPalindrome(s, i, i + 1); // even length
10         }
11         
12         return count;
13     }
14     
15     private void extendPalindrome(String s, int left, int right) {
16         while (left >=0 && right < s.length() && s.charAt(left) == s.charAt(right)) {
17             count++; left--; right++;
18         }
19     }
20 }

 

posted @ 2019-09-30 13:59  neverlandly  阅读(172)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3