【剑指offer】19、正则表达式匹配 && 【Leetcode】44、Wildcard Matching

题目一

请实现一个函数用来匹配包括‘.‘和‘*‘的正则表达式。模式中的字符‘.‘表示任意一个字符,而‘*‘表示它前面的字符可以出现任意次(包含0次)。 在本题中,匹配是指字符串的所有字符匹配整个模式。例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配

思路

用动态规划来解决

规定

,则str[0~i-1]和pattern[0~j-1]匹配

1、当p[j-1] != * 时

  

2、当p[j-1] = * 时

  记p[j-2]=X,分为以下两种情况

  (a) "X*"重复了0次:等式右边第一项说明*重复零次,则f[i][j]与 f[i][j-2]真假相同,亦或是p[j-2]是万能字符

    

  (b)"X*"重复了大于等于1次:

    等式右边第一项说明要么是万能字符,

    第二项表示f[i][j]与f[i-1][j]真假相同,其实就是回退到重复0次的情况

    第三项保证复制的正确性

      

    如 s=bcaaa p=bca*  f[5][4]  -> f[4][4] -> f[3][4] -> f[2][4]

    此时 s = bc p = bca*,可以匹配

算法流程

1、初始化二维布尔数组,注意列不一定为0

  

2、按以上规则自下网上计算出f[i][j]

计算过程

  b c a a a
1 0 0 0 0 0
b 0 1 0 0 0 0
c 0 0 1 0 0 0
a 0 0 0 1 0 0
* 0 0 1 1 1 1
class Solution {
public:
    bool match(char* str, char* pattern)
    {
        int m = strlen(str);
        int n = strlen(pattern);
        vector<vector<bool>> f(m+1, vector<bool>(n+1, false));
        f[0][0] = true;

        for (int i = 1; i <= m; i++)
        {
            f[i][0] = false;
        }
        for (int j = 1; j <= n; j++)
        {
            f[0][j] = ((j > 1) && (pattern[j-1] == ‘*‘) && (f[0][j-2]));
        }

        for (int i = 1; i <= m; i++){
            for (int j = 1; j <= n; j++){
                if (pattern[j-1] != ‘*‘)
                    f[i][j] = f[i - 1][j - 1] && (str[i - 1] == pattern[j - 1] || ‘.‘ == pattern[j - 1]);
                else
                    f[i][j] = f[i][j-2] || (pattern[j-2] == ‘.‘) || (str[i-1] == pattern[j-2]) && f[i-1][j];
            }
        }
        return f[m][n];
    }
};

题目二

Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for ‘?‘ and ‘*‘.

‘?‘ Matches any single character.
‘*‘ Matches any sequence of characters (including the empty sequence).

Example 1:

Input:
s = "aa"
p = "a"
Output: false
Explanation: "a" does not match the entire string "aa".

Example 2:

Input:
s = "aa"
p = "*"
Output: true
Explanation: ‘*‘ matches any sequence.

Example 3:

Input:
s = "cb"
p = "?a"
Output: false
Explanation: ‘?‘ matches ‘c‘, but the second letter is ‘a‘, which does not match ‘b‘.

Example 4:

Input:
s = "adceb"
p = "*a*b"
Output: true
Explanation: The first ‘*‘ matches the empty sequence, while the second ‘*‘ matches the substring "dce".

Example 5:

Input:
s = "acdcb"
p = "a*c?b"
Output: false
class Solution {
public:
    bool isMatch(string s, string p) {
        int n = (int)s.length();
        int m = (int)p.length();

        vector<vector<bool>> dp(n + 1, vector<bool>(m + 1));

        dp[0][0] = true;
        for (int i = 1; i <= m && p[i - 1] == ‘*‘; i++)
            dp[0][i] = true;

        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= m; j++) {
                if (p[j - 1] == ‘*‘)
                    dp[i][j] =  dp[i - 1][j] || dp[i][j - 1];
                else
                    dp[i][j] = (p[j - 1] == ‘?‘ || s[i - 1] == p[j - 1]) && dp[i - 1][j - 1];
            }
        }

        return dp[n][m];
    }
};

原文地址:https://www.cnblogs.com/shiganquan/p/9340833.html

时间: 2024-10-09 12:17:32

【剑指offer】19、正则表达式匹配 && 【Leetcode】44、Wildcard Matching的相关文章

《剑指offer》正则表达式匹配

[ 声明:版权所有,转载请标明出处,请勿用于商业用途.  联系信箱:[email protected]] 题目链接:http://www.nowcoder.com/practice/45327ae22b7b413ea21df13ee7d6429c?rp=3&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking 题目描述 请实现一个函数用来匹配包括'.'和'*'的正则表达式.模式中的字符'.'表示任意一个字符,

[剑指offer] 52. 正则表达式匹配

题目描述 请实现一个函数用来匹配包括'.'和'*'的正则表达式.模式中的字符'.'表示任意一个字符,而'*'表示它前面的字符可以出现任意次(包含0次). 在本题中,匹配是指字符串的所有字符匹配整个模式.例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配 思路: 当匹配模式的i+1位不是" * "时: 直接判断str[i]和str[i+

剑指offer:正则表达式匹配

题目描述请实现一个函数用来匹配包括'.'和''的正则表达式.模式中的字符'.'表示任意一个字符,而''表示它前面的字符可以出现任意次(包含0次). 在本题中,匹配是指字符串的所有字符匹配整个模式.例如,字符串"aaa"与模式"a.a"和"abaca"匹配,但是与"aa.a"和"ab*a"均不匹配 class Solution: def match(self, s, pattern): ""

19.2.4 [LeetCode 44] Wildcard Matching

Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence). The matching should cover the enti

剑指offer (19) 二叉树镜像 对称二叉树

题目: 输入一个二叉树,输出其镜像. BinTreeNode* ReverseTree(BinTreeNode* pRoot) { if (pRoot == NULL) return NULL; BinTreeNode* pLeftReverse = ReverseTree(pRoot->left); BinTreeNode* pRightReverse = ReverseTree(pRoot->right); pRoot->left = pRightReverse; pRoot->

leetCode 44.Wildcard Matching (通配符匹配) 解题思路和方法

Wildcard Matching '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence). The matching should cover the entire input string (not partial). The function prototype should be: bool isMatch(const char *s,

第八周 Leetcode 44. Wildcard Matching 水题 (HARD)

Leetcode 44 实现一种类似正则表达式的字符串匹配功能. 复杂度要求不高, 调代码稍微费点劲.. 好像跟贪心也不太沾边, 总之 *把待匹配串分成若干个子串, 每一个子串尽量在模式串中靠前的部分匹配完成就算贪心了吧.. class Solution { public: bool match(string &s,string &p,int l2,int r2,int l1) { if(l2==r2)return true; if(l1+r2-l2-1>=s.length())re

剑指offer52:正则表达式匹配

1 题目描述 请实现一个函数用来匹配包括'.'和'*'的正则表达式.模式中的字符‘.’表示任意一个字符,而'*'表示它前面的字符可以出现任意次(包含0次). 在本题中,匹配是指字符串的所有字符匹配整个模式.例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配 2 思路和方法 正则表达式中有三种情况: a.普通字符 b.字符’.’ c.普通字符或’.’ +

[剑指offer] 19. 顺时针打印矩阵

题目描述 输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下4 X 4矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10. 思路: 模拟题,划定好每一次打印圈的边界(上下左右),注意最后一圈有可能上下左右重叠 class Solution { public: vector<int> printMatrix(vector<vector

54. Spiral Matrix(剑指offer 19)

Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. Example 1: Input: [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ] Output: [1,2,3,6,9,8,7,4,5] Example 2: Input: [ [1, 2, 3, 4], [5, 6, 7, 8], [9,10,11,