博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode[132]Palindrome Partitioning II
阅读量:5282 次
发布时间:2019-06-14

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

Given a string s, partition s such that every substring of the partition is a palindrome.

Return the minimum cuts needed for a palindrome partitioning of s.

For example, given s = "aab",

Return 1 since the palindrome partitioning ["aa","b"] could be produced using 1 cut.

class Solution {public:    int minCut(string s) {        if(s.empty())return 0;        int n=s.length();        bool **T=new bool*[n];        for(int i=0;i
=0;i--) { cut[i]=n-i; for(int j=i;j
=0&&right
=0&&right
=0;i--) { cut[i]=n-i; for(int j=i;j

 

转载于:https://www.cnblogs.com/Vae1990Silence/p/4281257.html

你可能感兴趣的文章
中央定时器控制
查看>>
JEUS 启动关闭脚本
查看>>
ACDsee的安装过程
查看>>
[转帖]NUMA架构的CPU -- 你真的用好了么?
查看>>
使用SCOM常用的一些ManagementPack
查看>>
[转]《深度探索C++对象模型》读书笔记[一]
查看>>
【.net ajax显示后台返回值】
查看>>
Dom
查看>>
Qt5学习笔记(消息过滤器)
查看>>
BZOJ 2301: [HAOI2011]Problem b(莫比乌斯反演)
查看>>
backbone框架思路
查看>>
Linux 查看物理 CPU、内存信息
查看>>
“百度杯”CTF比赛 九月场 YeserCMS
查看>>
120. Triangle
查看>>
UESTC_Rain in ACStar 2015 UESTC Training for Data Structures<Problem L>
查看>>
JavaSE 学习笔记之多线程(十三)
查看>>
poj 1067取石子(威佐夫博奕)
查看>>
[转]URL重写规则学习和应用实例
查看>>
setsockopt中参数之SO_REUSEADDR的意义(转)
查看>>
016_Python3 函数
查看>>