-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrmatching.cpp
117 lines (100 loc) · 3.19 KB
/
strmatching.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// {"category": "String", "notes": "Regular expressions with '.' and '*'"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <Windows.h>
using namespace std;
//------------------------------------------------------------------------------
//
// How do you implement a function to match regular expressions with '.' and
// '*' in patterns?
//
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
bool match(char* pString, char* pPattern)
{
if (nullptr == pString || nullptr == pPattern)
{
return false;
}
if ('\0' == *pPattern)
{
return ('\0' == *pString);
}
if ('*' == *(pPattern + 1))
{
if (*pString == *pPattern || *pString != '\0' && '.' == *pPattern)
{
// Continue on the current pattern.
if (match(pString + 1, pPattern))
{
return true;
}
// Move onto the next pattern.
if (match(pString + 1, pPattern + 2))
{
return true;
}
}
// Not a match. Ignore the '*'.
return match(pString, pPattern + 2);
}
if (*pString == *pPattern || *pString != '\0' && '.' == *pPattern)
{
// Move onto the next pattern.
return match(pString + 1, pPattern + 1);
}
return false;
}
//------------------------------------------------------------------------------
//
// Unit tests
//
//------------------------------------------------------------------------------
int _tmain(int argc, _TCHAR* argv[])
{
struct TestCase
{
char* string;
char* pattern;
bool match;
};
const TestCase tests[] =
{
{ "aaa", "a.a", true },
{ "aaa", "ab*ac*a", true },
{ "aaa", "aa.a", false },
{ "aaa", "ab*a", false },
{ "aaa", ".*b*", true },
{ "ac", "a.*c", true },
{ "aaab", "a*b*", true },
{ "aaabbb", "...b*", true },
{ "aaa", ".", false },
{ "aaa", "*", false },
{ "aaa", "", false },
{ "aaa", nullptr, false },
{ "", ".", false },
{ "", "", true },
{ nullptr, "a", false },
{ ".", ".", true },
{ ".", "*", false },
{ "*", "*", true },
{ "*", "**", true },
};
for (int i = 0; i < ARRAYSIZE(tests); ++i)
{
bool result = match(tests[i].string, tests[i].pattern);
bool pass = (result == tests[i].match);
cout << (pass ? "PASS: \"" : "FAIL: \"");
cout << (nullptr == tests[i].string ? "(null)" : tests[i].string);
cout << (result ? "\" == \"" : "\" != \"");
cout << (nullptr == tests[i].pattern ? "(null)" : tests[i].pattern);
cout << "\"" << endl;
}
return 0;
}