leetcode之萬用字元
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(const char *s, const char *p) {
const char* sBegin = NULL,*pBegin = NULL;
while(*s)
{
if(*s == *p || *p == '?')
{
++s;
++p;
}
else if(*p == '*')
{
pBegin = p;//記錄萬用字元的位置
sBegin = s;
++p;
}
else if(pBegin != NULL)
{
p = pBegin + 1;//重萬用字元的下一個字元開始
++sBegin;//每次多統配一個
s = sBegin;
}
else return false;
}
while(*p == '*')++p;
return (*p == '\0');
}
};
Implement regular expression matching with support for '.'
and '*'
.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
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", "a*") → true
isMatch("aa", ".*") → true
isMatch("ab", ".*") → true
isMatch("aab", "c*a*b") → true
思路:本題和上面不同之處在於,此時的萬用字元'*'和它前面的字元看成一個整體,它們兩個代表0到多個第一個字元,而不是任一個字元。所以,當下一個字元是'*'時,如果當前字元相等,則反覆跳過當前字元去匹配'*'後面的字元,如果不相等,則直接匹配'*'後面的字元。
class Solution {
public:
bool isMatch(const char *s, const char *p) {
if(*p == '\0')return *s == '\0';
if(*(p+1) != '*')
{
if(*s != '\0' && (*s == *p || *p == '.'))return isMatch(s+1,p+1);
}
else
{
//s向後移動0、1、2……分別和p+2進行匹配
while(*s != '\0' && (*s == *p || *p == '.'))
{
if(isMatch(s,p+2))return true;
++s;
}
return isMatch(s,p+2);
}
return false;
}
};
相關文章
- LeetCode 44 萬用字元匹配LeetCode字元
- SQL語法之SQL 萬用字元SQL字元
- java泛型之萬用字元的使用。Java泛型字元
- 集合框架-泛型高階之萬用字元框架泛型字元
- java中泛型之型別萬用字元(?)Java泛型型別字元
- LeetCode刷題記126-44. 萬用字元匹配LeetCode字元
- Python3 - 用Shell萬用字元匹配字串Python字元字串
- [MYSQL-8]用萬用字元進行過濾MySql字元
- leetcode 之無重複字元的最長子串LeetCode字元
- Zsh 開發指南(四): 字串處理之萬用字元字串字元
- 萬用字元詳解字元
- Linux萬用字元Linux字元
- Linux 萬用字元Linux字元
- oracle全文索引之停用詞的萬用字元功能Oracle索引字元
- Ubuntu萬用字元的使用Ubuntu字元
- 命令列萬用字元教程命令列字元
- RabbitMQ-萬用字元模式MQ字元模式
- dataframe 萬用字元篩選字元
- 泛型概述-萬用字元泛型字元
- SQL Like萬用字元使用SQL字元
- java的classpath萬用字元Java字元
- Linux萬用字元(轉)Linux字元
- Linux Shell 萬用字元、元字元、轉義符使用Linux字元
- 萬用字元與特殊符號字元符號
- shell命令中的萬用字元字元
- Struts(三) 萬用字元講解字元
- jQuery *萬用字元選擇器jQuery字元
- 帶萬用字元的LIKE子句字元
- 萬用字元 and [] 中括號的用法字元
- OpenJudge 帶萬用字元的字串匹配字元字串匹配
- Java 泛型中的萬用字元Java泛型字元
- SpringMvc Ant萬用字元的使用SpringMVC字元
- linux管道符和萬用字元Linux字元
- 使用萬用字元增強泛型字元泛型
- 談談方括號萬用字元字元
- DELPHI的萬用字元比較 (轉)字元
- 微服務的Zuul萬用字元規則微服務Zuul字元
- 《MySQL必知必會》萬用字元 ( like , % , _ ,)MySql字元