-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGfg_hard_Wildcard_string_matching.cpp
47 lines (44 loc) · 1.26 KB
/
Gfg_hard_Wildcard_string_matching.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
class Solution{
public:
bool solve(string wild, string pattern, int i , int j){
// cout<<i<<" "<<j<<" "<<wild.length()<<" "<<pattern.length()<<endl;
if(i==wild.length() && j == pattern.length()){
return true;
}
if(i== wild.length()){
return false;
}
if(j==pattern.length()){
return false;
}
if((wild[i]==pattern[j]) || wild[i] == '?'){
i++;
j++;
return solve(wild,pattern,i,j);
}
else if(wild[i] == '*'){
if(i == wild.length()-1){
return true;
}
i++;
for(int k = 0; k+j< pattern.length();k++){
if(wild[i] == pattern[k+j] || wild[i] == '?'){
if(solve(wild,pattern,i+1,k+j+1)){
return true;
}
}
if(wild[i] == '*'){
if(solve(wild,pattern,i+1,k+j)){
return true;
}
}
}
return false;
}
}
bool match(string wild, string pattern)
{
// code here
return solve(wild,pattern,0,0);
}
};