Golang | Leetcode Golang题解之第10题正则表达式匹配

题目:

题解:

Go 复制代码
func isMatch(s string, p string) bool {
    m, n := len(s), len(p)
    matches := func(i, j int) bool {
        if i == 0 {
            return false
        }
        if p[j-1] == '.' {
            return true
        }
        return s[i-1] == p[j-1]
    }

    f := make([][]bool, m + 1)
    for i := 0; i < len(f); i++ {
        f[i] = make([]bool, n + 1)
    }
    f[0][0] = true
    for i := 0; i <= m; i++ {
        for j := 1; j <= n; j++ {
            if p[j-1] == '*' {
                f[i][j] = f[i][j] || f[i][j-2]
                if matches(i, j - 1) {
                    f[i][j] = f[i][j] || f[i-1][j]
                }
            } else if matches(i, j) {
                f[i][j] = f[i][j] || f[i-1][j-1]
            }
        }
    }
    return f[m][n]
}
相关推荐
虽千万人 吾往矣2 小时前
golang LeetCode 热题 100(动态规划)-更新中
算法·leetcode·动态规划
姚先生975 小时前
LeetCode 209. 长度最小的子数组 (C++实现)
c++·算法·leetcode
LeonNo115 小时前
golang , chan学习
开发语言·学习·golang
HUT_Tyne2656 小时前
力扣--LCR 53.最大数组和
算法·leetcode·动态规划
南宫生6 小时前
力扣-数据结构-1【算法学习day.72】
java·数据结构·学习·算法·leetcode
龙门吹雪6 小时前
GO语言基础面试题
golang·面试题·map·channel·
chenziang16 小时前
leetcode hot100 删除链表的第n个节点
算法·leetcode·链表
zyh_0305216 小时前
GIN中间件
后端·golang·gin
清炒孔心菜6 小时前
每日一题 342. 4的幂
leetcode
刚学HTML9 小时前
leetcode 05 回文字符串
算法·leetcode