博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java for LeetCode 132 Palindrome Partitioning II
阅读量:4954 次
发布时间:2019-06-12

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

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.

解题思路:

因为是Hard,用上题的结果计算肯定是超时的,本题需要用dp的思路,开一个boolean[][]的数组计算i-j是否为palindrome,递推关系为s.charAt(j) == s.charAt(i) &&  isPal[j + 1][i - 1]) → isPal[j][i] = true,同时dp[i] = Math.min(dp[i], dp[j - 1] + 1),JAVA实现如下:

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

 

                   

转载于:https://www.cnblogs.com/tonyluis/p/4544882.html

你可能感兴趣的文章
检索COM 类工厂中CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败
查看>>
mysql数据库中数据类型
查看>>
Fireworks基本使用
查看>>
两台电脑间的消息传输
查看>>
Linux 标准 I/O 库
查看>>
.net Tuple特性
查看>>
Java基础常见英语词汇
查看>>
iOS并发编程笔记【转】
查看>>
泛型 T的定义<1>
查看>>
thinkphp dispaly和fetch的区别
查看>>
08号团队-团队任务5:项目总结会
查看>>
mybatis 插入数据 在没有commit时 获取主键id
查看>>
SQL2005 删除空白行null
查看>>
lightoj 1030 概率dp
查看>>
重新注册.NET
查看>>
Java 内存溢出(java.lang.OutOfMemoryError)的常见情况和处理方式总结
查看>>
Vagrant入门
查看>>
python and 我爱自然语言处理
查看>>
第3讲:导入表的定位和读取操作
查看>>
echarts-柱状图绘制
查看>>