标签:leetcode
链接:https://leetcode.com/problems/wildcard-matching/
问题描述:
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(string s, string 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
Hide Tags Dynamic Programming Backtracking Greedy String
Hide Similar Problems (H) Regular Expression Matching
这个问题就是字符串匹配问题,常用在文件查找中。解决这个问题最关键的处里 * 的匹配问题。先来看需要处理的几种情况。
string s | string p | *匹配的内容 |
---|---|---|
h | *? | 空 |
hi | *i | h |
abca | a*a | bc |
abcada | a*a | bcad |
abcadacd | a*a*d | bca dac |
可以这样解决,一旦遇到p中的那么我们将p中的位置pstar记录下来,pstar表示p中 的位置,pstar只有在遇到下一个 * 才会进行更新。同时记录s中的位置为starmatch,starmatch表示 p 中 * 匹配s中最后一个字符的位置,starmatch经常要进行更新。需要注意的是当有pstar存在时,s和p在某些位置匹配,以当遇到不匹配的情况时候一定要更新starmatch。
class Solution {
public:
bool isMatch(string s, string p) {
int p1=0,p2=0,pstar=-1,starmatch=-1;
while(p1<s.length())
{
if(s[p1]==p[p2]||p[p2]==‘?‘)
{
p1++;
p2++;
}
else if(p[p2]==‘*‘)
{
pstar=++p2;
starmatch=p1;
}
else if(pstar>-1)
{
p2=pstar;
p1=++starmatch;
}
else
return false;
}
while(p[p2]==‘*‘)p2++;
return p[p2]==‘\0‘;
}
};
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:leetcode
原文地址:http://blog.csdn.net/efergrehbtrj/article/details/46908775