golang力扣leetcode 132.分割回文串II

简介: golang力扣leetcode 132.分割回文串II

132.分割回文串II

132.分割回文串II

题解

//state: dp[i]表示string[0,i)最少分割次数

//function: dp[i] = min(dp[i],dp[j]+1) -->j<i && [j+1,i)是回文串

//intialize:dp[i] = i-1

//answer: dp[len(s)]

代码

package main
func minCut(s string) int {
  dp := make([]int, len(s)+1)
  for i := 0; i <= len(s); i++ {
    dp[i] = i - 1
    for j := 0; j < i; j++ {
      if isPalindrome(s, j, i-1) {
        dp[i] = min(dp[i], dp[j]+1)
      }
    }
  }
  return dp[len(s)]
}
func isPalindrome(s string, i, j int) bool {
  for i < j {
    if s[i] == s[j] {
      i++
      j--
    } else {
      return false
    }
  }
  return true
}
func min(a, b int) int {
  if a > b {
    return b
  }
  return a
}
目录
相关文章
|
1月前
|
程序员 C语言
【C语言】LeetCode(力扣)上经典题目
【C语言】LeetCode(力扣)上经典题目
|
1月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
78 0
|
1月前
力扣(LeetCode)数据结构练习题(2)
力扣(LeetCode)数据结构练习题(2)
29 0
|
1月前
|
存储
力扣(LeetCode)数据结构练习题
力扣(LeetCode)数据结构练习题
52 0
|
3月前
|
Python
【Leetcode刷题Python】416. 分割等和子集
LeetCode 416题 "分割等和子集" 的Python解决方案,使用动态规划算法判断是否可以将数组分割成两个元素和相等的子集。
31 1
|
3月前
|
Python
【Leetcode刷题Python】131. 分割回文串
LeetCode题目131的Python编程解决方案,题目要求将给定字符串分割成所有可能的子串,且每个子串都是回文串,并返回所有可能的分割方案。
21 2
|
4月前
2670.找出不同元素数目差数组-力扣(LeetCode)
2670.找出不同元素数目差数组-力扣(LeetCode)
33 0
|
4月前
|
索引
821.字符的最短距离-力扣(LeetCode)
821.字符的最短距离-力扣(LeetCode)
34 0
|
5月前
力扣经典150题第二十五题:验证回文串
力扣经典150题第二十五题:验证回文串
35 0
|
5月前
|
算法 数据可视化 数据挖掘
最佳加油站选择算法:解决环路加油问题的两种高效方法|LeetCode力扣134
最佳加油站选择算法:解决环路加油问题的两种高效方法|LeetCode力扣134