-
Notifications
You must be signed in to change notification settings - Fork 0
/
10.cpp
87 lines (84 loc) · 2.42 KB
/
10.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Solution1
class Solution {
public:
bool isMatch(string s, string p) {
int lenS = s.size(), lenP = p.size();
if (lenS == 0) {
if (lenP == 0) {
return true;
}
else if (lenP >= 2 && p[1] == '*') {
string newP = p.substr(2, lenP - 2);
return isMatch(s, newP);
}
else {
return false;
}
}
else if (lenP == 0) {
return false;
}
else {
if (s[0] == p[0] || p[0] == '.') {
string newS = s.substr(1, lenS - 1);
if (lenP >= 2 && p[1] == '*') {
string newP = p.substr(2, lenP - 2);
return isMatch(newS, p) || isMatch(s, newP);
}
else {
string newP = p.substr(1, lenP - 1);
return isMatch(newS, newP);
}
}
else if (lenP >= 2 && p[1] == '*') {
string newP = p.substr(2, lenP - 2);
return isMatch(s, newP);
}
else {
return false;
}
}
}
};
// Solution2
class Solution {
public:
bool isMatch(string s, string p) {
int lenS = s.size(), lenP = p.size();
if (lenP == 0) {
return lenS == 0;
}
else if (lenP >= 2 && p[1] == '*') {
if (lenS == 0) {
string newP = p.substr(2, lenP - 2);
return isMatch(s, newP);
}
else {
if (s[0] == p[0] || p[0] == '.') {
string newS = s.substr(1, lenS - 1);
string newP = p.substr(2, lenP - 2);
return isMatch(newS, p) || isMatch(s, newP);
}
else {
string newP = p.substr(2, lenP - 2);
return isMatch(s, newP);
}
}
}
else {
if (lenS == 0) {
return false;
}
else {
if (s[0] == p[0] || p[0] == '.') {
string newS = s.substr(1, lenS - 1);
string newP = p.substr(1, lenP - 1);
return isMatch(newS, newP);
}
else {
return false;
}
}
}
}
};