您的位置:首页 > 编程语言 > C语言/C++

Leetcode 44. Wildcard Matching (Hard) (cpp)

2016-11-25 01:15 429 查看
Leetcode 44. Wildcard Matching (Hard) (cpp)

Tag: Dynamic Programming, Backtracking, Greedy, String

Difficulty: Hard

/*

44. Wildcard Matching (Hard)

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 entire input string (not partial).

The function prototype should be:
bool isMatch(const char *s, const char *p)

Some examples:
isMatch("aa","a") → false
isMatch("aa","aa") → true
isMatch("aaa","aa") → false
isMatch("aa", "*") → true
isMatch("aa", "a*") → true
isMatch("ab", "?*") → true
isMatch("aab", "c*a*b") → false

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode cpp