leetcde 10 Regular Expression Matching

Posted 王坤1993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcde 10 Regular Expression Matching相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    bool isMatch(string s, string p) {
        int m = s.size(), n = p.size();
        vector<vector<bool>> dp(m + 1, vector<bool>(n + 1, false));
        dp[0][0] = true;
        for (int i = 0; i <= m; ++i) {
            for (int j = 1; j <= n; ++j) {
                if (j > 1 && p[j - 1] == ‘*‘) {
                    dp[i][j] = dp[i][j - 2] || (i > 0 && (s[i - 1] == p[j - 2] || p[j - 2] == ‘.‘) && dp[i - 1][j]);
                } else {
                    dp[i][j] = i > 0 && dp[i - 1][j - 1] && (s[i - 1] == p[j - 1] || p[j - 1] == ‘.‘);
                }
            }
        }
        return dp[m][n];
    }
};

以上是关于leetcde 10 Regular Expression Matching的主要内容,如果未能解决你的问题,请参考以下文章

leetcde 12 Integer to Roman

leetcde 13 Roman to Integer

如何在第 n 次出现管道“|”后获取字符或字符串ORACLE 中使用 REGULAR_EXPRESSION 的符号?

如何使用正则表达式在 Intellij IDEA 中用小写替换大写?

LeetCode 10. Regular Expression Matching

leetcode 10 Regular Expression Matching