leetcode中等131分割回文串
Posted qq_40707462
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode中等131分割回文串相关的知识,希望对你有一定的参考价值。
思路:
先用dp[i][j]
记录字串是否回文
再dfs回溯
class Solution:
def partition(self, s: str) -> List[List[str]]:
length=len(s)
dp=[[False]*length for _ in range(length)]
for j in range(length):
for i in range(j+1):
if s[i]==s[j]:
if j-i<3:dp[i][j]=True
else:dp[i][j]=dp[i+1][j-1]
else:dp[i][j]=False
res=[]
path=[]
def dfs(i):
if i==length:
res.append(path[:])
return
for j in range(i,length):
if dp[i][j]:
path.append(s[i:j+1])
dfs(j+1)
path.pop()
dfs(0)
return res
class Solution {
public List<List<String>> partition(String s) {
int len=s.length();
boolean[][]dp=new boolean[len][len];
isVaild(s,dp);
List<List<String>> res = new ArrayList<>();
dfs(s,dp,0,new ArrayList<>(),res);
return res;
}
public void dfs(String s,boolean[][]dp,int i,ArrayList<String>path,List<List<String>> res){
if(i==s.length()){
res.add(new ArrayList<>(path));
return;
}
for(int j=i;j<s.length();j++){
if(dp[i][j]==true){
path.add(s.substring(i,j+1));
dfs(s,dp,j+1,path,res);
path.remove(path.size()-1);
}
}
}
public void isVaild(String s,boolean[][]dp){
int len=s.length();
for(int j=0;j<len;j++){
for(int i=0;i<=j;i++){
if(s.charAt(i)==s.charAt(j)){
if(j-i<3) dp[i][j]=true;
else dp[i][j]=dp[i+1][j-1];
}
}
}
}
}
以上是关于leetcode中等131分割回文串的主要内容,如果未能解决你的问题,请参考以下文章