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

leetcode——132. 分割回文串 II

时间:2020-06-24 23:21:40      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:str   char   code   new   com   n+1   math   loading   分割   

public int minCut(String s) {
        int n = s.length();
        int[] f = new int[n+1];
        boolean[][] p = new boolean[n][n];
        for (int i = 0;i<= n;i++){
            f[i] = n-1-i;
        }
        for(int i = n-1;i>=0;i--){
            for(int j = i;j<n;j++){
                if(s.charAt(i) == s.charAt(j) && (j-i<2||p[i+1][j-1])){
                    p[i][j] = true;
                    f[i] = Math.min(f[i],f[j+1]+1);
                }
            }
        }
        return f[0];
    }

技术图片

 

 技术图片

 

 

 

确实难。。

——2020.6.24

leetcode——132. 分割回文串 II

标签:str   char   code   new   com   n+1   math   loading   分割   

原文地址:https://www.cnblogs.com/taoyuxin/p/13190558.html

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