leetcode.131. 分割回文串


给你一个字符串 s,请你将 s 分割成一些子串,使每个子串都是 回文串 。返回 s 所有可能的分割方案。

回文串 是正着读和反着读都一样的字符串。

 

示例 1:

输入:s = “aab”
输出:[[“a”,”a”,”b”],[“aa”,”b”]]
示例 2:

输入:s = “a”
输出:[[“a”]]
 

提示:

1 <= s.length <= 16
s 仅由小写英文字母组成

class Solution {
    List<List<String>>lists=new ArrayList();
    Deque<String>deque =new ArrayDeque();
    public List<List<String>> partition(String s) {
        backtracking(s,0);
        return lists;
    }
    private void backtracking(String s,int startIndex){
        if(startIndex>=s.length()){
            lists.add(new ArrayList(deque));
            return;
        }
        for(int i=startIndex;i<s.length();i++){
            if(isPalindrome(s,startIndex,i)){
                String str=s.substring(startIndex,i+1);
                deque.addLast(str);
            }else{
                continue;
            }
            backtracking(s,i+1);
            deque.removeLast();
        }
    }
    private boolean isPalindrome(String s,int startIndex,int end){
        for(int i=startIndex,j=end;i<j;i++,j–){
            if(s.charAt(i)!=s.charAt(j)){
                return false;
            }
        }
        return true;
    }
}

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/274585.html

(0)
上一篇 2022年7月15日
下一篇 2022年7月15日

相关推荐

发表回复

登录后才能评论