-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegular_expression_match.cpp
50 lines (50 loc) · 1.52 KB
/
Regular_expression_match.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
48
49
50
// Problem Link - https://www.interviewbit.com/problems/regular-expression-match/
/* Problem Solution
int expres(string target, string pattern)
{
int t = target.length();
int p = pattern.length();
vector<vector<bool>> dp(t+1, vector<bool> (p+1));
for(int i=0; i<=t; i++)
{
for(int j=0; j<=p; j++)
{
if(i==0&&j==0) dp[i][j]=1;
else if(i==0 && j!=0 ) dp[i][j] = (dp[i][j-1] && pattern[j-1]=='*');
else if(i!=0 && j==0) dp[i][j] = 0;
else if(target[i-1]==pattern[j-1] || pattern[j-1] == '?') dp[i][j] = dp[i-1][j-1];
else if(pattern[j-1] == '*') dp[i][j] = (dp[i-1][j]||dp[i][j-1]);
}
}
return dp[t][p];
}
int Solution::isMatch(const string A, const string B) {
return expres(A,B);
}
*/
#include <bits/stdc++.h>
using namespace std;
int expres(string target, string pattern)
{
int t = target.length();
int p = pattern.length();
vector<vector<bool>> dp(t+1, vector<bool> (p+1));
for(int i=0; i<=t; i++)
{
for(int j=0; j<=p; j++)
{
if(i==0&&j==0) dp[i][j]=1;
else if(i==0 && j!=0 ) dp[i][j] = (dp[i][j-1] && pattern[j-1]=='*');
else if(i!=0 && j==0) dp[i][j] = 0;
else if(target[i-1]==pattern[j-1] || pattern[j-1] == '?') dp[i][j] = dp[i-1][j-1];
else if(pattern[j-1] == '*') dp[i][j] = (dp[i-1][j]||dp[i][j-1]);
}
}
return dp[t][p];
}
int main()
{
string A = "agerfeorgin";
string B = "*erf??*";
cout<<expres(A, B);
}