leetcode_131

淳属虚构 · · 466 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Golang:

思路:DP预处理,递归加回溯,这题要想效率不错,还是有些难度的

代码如下:

func partition(s string) [][]string {
    if len(s)==0{
        return [][]string{{}}
    }
    dp:=make([][]int,len(s))
    for k,_:=range dp{
        dp[k]=make([]int,len(s))
    }
    for i:=len(s)-1;i>=0;i--{
        for j:=i;j<len(s);j++{
            if i==j{
                dp[i][j]=1
            }
            if j-i==1&&s[i]==s[j] {
                dp[i][j]=1
            }
            if j-i>1 {
                if dp[i+1][j-1]==1&&s[i]==s[j] {
                    dp[i][j]=1
                }
            }
        }
    }
    var res [][]string
    var path []string
    getPartition(0,1,s,&path,&res,dp)
    return res
}

func getPartition(last int,i int,s string,path *[]string,res *[][]string,dp [][]int){
    if i==len(s) {
        if dp[last][i-1]==1 {
            *path=append(*path,s[last:])
            cpy:=make([]string,len(*path))
            copy(cpy,*path)
            *res=append(*res,cpy)
            temp2:=*path
            temp2=temp2[:len(temp2)-1]
            *path=temp2
        }
        return
    }
    getPartition(last,i+1,s,path,res,dp)
    if dp[last][i-1]==1 {
        *path=append(*path,s[last:i])
        getPartition(i,i+1,s,path,res,dp)
        temp2:=*path
        temp2=temp2[:len(temp2)-1]
        *path=temp2
    }
}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:淳属虚构

查看原文:leetcode_131

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

466 次点击  
加入收藏 微博
上一篇:leetcode_147
下一篇:leetcode_86
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传