LeetCode 131 Palindrome Partitioning

系统 1939 0

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

Return all possible palindrome partitioning of  s .

For example, given  s  =  "aab" ,
Return

                  [
    ["aa","b"],
    ["a","a","b"]
  ]
              
思路:1.推断字符串的字串S.subString(i,j) [i<=j]是否为为回文子串,用boolean型的二维数组 isPalindrome来存储该结果 。在这个地方用了点小技巧,isPalindrome[i]j]会依赖于i sPalindrome[i+1]j-1]  [i+2<=j].
          2.如果在求String s的全部回文子串,我们已经知道了s.substring(0,0),s .substring(0,1), s.substring(0,2),s .substring(0,3), ....,s .substring(0,s.length()-2)的全部回文字串,那我们仅仅须要遍历 i sPalindrome[i]js.lenth()-1]是不是true{即从s.substring(i)是不是回文字符串}若为true,我们取出 s.substring(i-1)的全部回文字串,并在每一种可能性末尾加入 s.substring(i)就可以,代码例如以下
            public class Solution {

	public boolean[][] isPalindrome(String s) {
		boolean[][] isPalindrome = new boolean[s.length()][s.length()];
		for (int i = 0; i < s.length(); i++)
			isPalindrome[i][i] = true;

		for (int i = 0; i < s.length() - 1; i++)
			isPalindrome[i][i + 1] = (s.charAt(i) == s.charAt(i + 1));

		for (int length = 2; length < s.length(); length++) {
			for (int start = 0; start + length < s.length(); start++) {
				isPalindrome[start][start + length] = isPalindrome[start + 1][start
						+ length - 1]
						&& s.charAt(start) == s.charAt(start + length);
			}
		}
		return isPalindrome;
	}

	public List<List<String>> partition(String s) {
		boolean[][] isPalindrome= isPalindrome(s);
		HashMap<Integer,List<List<String>>> hm=new HashMap<Integer,List<List<String>>>();
		for(int i=0;i<s.length();i++){
			List<List<String>> ls=new ArrayList<List<String>>();
			if(isPalindrome[0][i]){
				ArrayList<String> temp=new ArrayList<String>();
				temp.add(s.substring(0, i+1));
				ls.add(temp);
			}
			
			for(int j=1;j<=i;j++){
				if(isPalindrome[j][i]){
					List<List<String>> l=hm.get(j-1);
					List<List<String>> al=new ArrayList<List<String>>();
					for(List<String> temp:l){
						ArrayList<String> clone=new ArrayList<String>(temp);
						clone.add(s.substring(j, i+1));
						al.add(clone);
					}
					ls.addAll(al);
				}	
			}
			hm.put(i,ls);
		}
		return hm.get(s.length()-1);
	}
}
          


LeetCode 131 Palindrome Partitioning


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论