-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregex.cpp
505 lines (371 loc) · 8.91 KB
/
regex.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/*
* regex.cpp
*
*
* Created by Gagan Awhad on 4/6/09.
* Copyright 2009 __MyCompanyName__. All rights reserved.
*
*
* 4th July, added the elementary parser
* 31st august, converting the parser form case statement to an ifelse type statement.
* 20 nov, added the no argument constructor to regex because it is being used as a vector in GNFA
* 17 feb added code for unionTree
*
*/
/* this version basically is different from the earlier in that
the classes inherit from each other rather than all inheriting from
a regex node
The display() function has been modified to display more asthetically
The simplify() function in this version is a much better design.
all simplify functions lower starting from the root will return a pointer to a tree that is simplifed from the node it is called at
it tires to implement the simple rule, null set U 'r' = r
*/
#include <iostream>
#include <sstream>
#include <string>
#include "regex.h"
#include "stack.h"
bool regexNode::isLeaf(){
return false;
}
bool regexNode::isStar(){
return false;
}
bool regexNode::isUnion(){
return false;
}
bool regexNode::isConcat(){
return false;
}
bool regexNode::isUnionTree(){
return false;
}
bool regexNode::isNULL(){
if (this->isLeaf() && this->getSymbol() == NULLSET){
return true;
}
else {
return false;
}
}
bool regexNode::isEmpty(){
if (this->isLeaf() && this->getSymbol() == EPSILON){
return true;
}
else {
return false;
}
}
bool regexNode::setLeftChild(regexNode*){
return 0;
}
regexNode* regexNode::getLeftChild(){
return 0;
}
bool regexNode::setRightChild(regexNode*){
return 0;
}
regexNode* regexNode::getRightChild(){
return 0;
}
bool regexNode::setChildren(regexNode* , regexNode*){
return 0;
}
char regexNode::getSymbol(){
return '0';
}
void regexNode::type(){
cout<<"Type is: regexNode"<<endl;
}
regexNode * regexNode::operator + (regexNode& b){
regexNode * temp = new unionNode (this, &b);
return temp;
}
regexNode* regexNode::operator ++ (int){
regexNode * temp = new starNode(this);
return temp;
}
regexNode * regexNode::operator - (regexNode& b){
regexNode * temp = new concatNode (this, &b);
return temp;
}
regexNode::~regexNode(){
}
/*********************** Unary Regex-Node **************************/
bool unaryRegexNode::setLeftChild(regexNode* newLeftChild){
delete leftChild;
leftChild = newLeftChild;
return true;
}
regexNode * unaryRegexNode::getLeftChild(){
return this->leftChild;
}
alphabet unaryRegexNode::getLeaves(){
return leftChild->getLeaves();
}
void unaryRegexNode::type(){
cout<<"Type is: unaryRegexNode"<<endl;
}
unaryRegexNode::~unaryRegexNode(){
}
// void unaryRegexNode::delTree(){
// leftChild->delTree();
// }
/*********************** Binary Regex-Node **************************/
bool binaryRegexNode::setRightChild(regexNode* newRightChild){
delete rightChild;
rightChild = newRightChild;
return true;
}
regexNode * binaryRegexNode::getRightChild(){
return this->rightChild;
}
bool binaryRegexNode::setChildren(regexNode* newLeftChild, regexNode* newRightChild){
delete leftChild;
this->leftChild = newLeftChild;
delete rightChild;
this->rightChild = newRightChild;
return true;
}
alphabet binaryRegexNode::getLeaves(){
return leftChild->getLeaves() + rightChild->getLeaves();
}
void binaryRegexNode::type(){
cout<<"Type is: binaryRegexNode"<<endl;
}
binaryRegexNode::~binaryRegexNode(){
}
/*********************** Leaf Node **************************/
leafNode::leafNode(){
this->symbol = '0';
}
leafNode::leafNode(char symbol){
this->symbol = symbol;
}
bool leafNode::isLeaf(){
return true;
}
bool leafNode::isUnionTree(){
return true;
}
char leafNode::getSymbol(){
return symbol;
}
//does not do anything in the case that it is a NULLSET as of now.
alphabet leafNode::getLeaves() {
alphabet leaf;
if(symbol == EPSILON){
leaf.setAlphaSymbol(128);// this corresponds to
}
else {
leaf.setAlphaSymbols(&symbol);
}
return leaf;
}
void leafNode::display(){
if (symbol == NULLSET){
cout<<" NullSet ";
}
else if (symbol == EPSILON){
cout<<" Epsilon ";
}
else{
cout<<" "<<symbol<<" ";
}
}
void leafNode::type(){
cout<<"Type is: leafNode"<<endl;
}
regexNode* leafNode::simplify(){ //leaf nodes cannot be simplified more.
// this->type();
return this;
}
regexNode* leafNode::replicate(){ //leaf nodes cannot be simplified more.
return new leafNode(symbol);
}
leafNode::~leafNode(){
}
/*********************** Star Node **************************/
starNode::starNode(){
this->leftChild = new leafNode(NULLSET);
}
starNode::starNode(regexNode * newleftChild){
this->leftChild = newleftChild;
}
bool starNode::isStar(){
return true;
}
void starNode::display(){
cout<<" (";
leftChild->display();
cout<<")* ";
}
void starNode::type(){
cout<<"Type is: starRegexNode"<<endl;
}
regexNode* starNode::simplify(){
// this->type();
leftChild = leftChild->simplify();
if(leftChild->isLeaf()){
/* NULLSET * = {EPSILON} */
if (leftChild->getSymbol() == NULLSET){
regexNode* temp = new leafNode(EPSILON);
delete this;
return temp;
}
}
return this;
}
regexNode* starNode::replicate(){
return new starNode(leftChild->replicate());
}
starNode::~starNode(){
delete leftChild;
}
/*********************** Union Node **************************/
unionNode::unionNode(){
this->leftChild = new leafNode(NULLSET);
this->rightChild = new leafNode(NULLSET);
}
unionNode::unionNode( regexNode * leftChild, regexNode * rightChild){
this->leftChild = leftChild;
this->rightChild = rightChild;
}
bool unionNode::isUnion(){
return true;
}
/*simplify this, you wil need only one if condition */
bool unionNode::isUnionTree(){
if(this->isUnion()){
if (leftChild->isUnionTree()){
if (rightChild->isUnionTree()){
return true;
}
}
}
else{
return false;
}
}
void unionNode::display(){
cout<<" (";
leftChild->display();
cout<<"U";
rightChild->display();
cout<<") ";
}
void unionNode::type(){
cout<<"Type is: unionNode"<<endl;
}
regexNode* unionNode::simplify(){
// this->type();
leftChild = leftChild->simplify();
rightChild = rightChild->simplify();
/* NULLSET U R = R */
if (leftChild->isLeaf()) {
if(leftChild->getSymbol() == NULLSET){
regexNode* temp = rightChild;//becaue rightChild will no longer exist after deleting this
rightChild = 0;
delete this;
return temp;
}
}
/* R U NULLSET = R */
if (rightChild->isLeaf()){
if (rightChild->getSymbol() == NULLSET){
regexNode* temp = leftChild;
leftChild = 0;
delete this;
return temp;
}
}
return this;
}
regexNode* unionNode::replicate(){
return new unionNode(leftChild->replicate(), rightChild->replicate());
}
unionNode::~unionNode(){
delete leftChild;
delete rightChild;
}
/*********************** Concatination Node **************************/
concatNode::concatNode(){
this->leftChild = new leafNode(NULLSET);
this->rightChild = new leafNode(NULLSET);
}
concatNode::concatNode(regexNode * leftChild, regexNode * rightChild){
this->leftChild = leftChild;
this->rightChild = rightChild;
}
bool concatNode::isConcat(){
return true;
}
void concatNode::display(){
cout<<" (";
leftChild->display();
cout<<".";
rightChild->display();
cout<<") ";
}
void concatNode::type(){
cout<<"Type is: concatNode"<<endl;
}
regexNode* concatNode::simplify(){
// this->type();
leftChild = leftChild->simplify();
rightChild = rightChild->simplify();
/*NULLSET . R = NULLSET */
if (leftChild->isLeaf()){
if (leftChild->getSymbol() == NULLSET){
regexNode* temp = leftChild;
leftChild = new leafNode(NULLSET);
delete this;
return temp;
}
/* EPSILON . R = R */
else if (leftChild->getSymbol() == EPSILON){
regexNode* temp = rightChild;
rightChild = new leafNode(NULLSET);
delete this;
return temp;
}
}
/* R . NULLSET = NULLSET */
if (rightChild->isLeaf()){
if (rightChild->getSymbol() == NULLSET){
regexNode* temp = rightChild;
rightChild = new leafNode(NULLSET);
delete this;
return temp;
}
/* R . EPSLION = R */
else if (rightChild->getSymbol() == EPSILON){
regexNode* temp = leftChild;
leftChild = new leafNode(NULLSET);
delete this;
return temp;
}
}
return this;
}
regexNode* concatNode::replicate(){
return new concatNode(leftChild->replicate(), rightChild->replicate());
}
concatNode::~concatNode(){
delete leftChild;
delete rightChild;
}
ostream& operator << (ostream& s, regexNode* a){
a->display();
return s;
}
ostream& operator << (ostream& s, regexNode& a){
a.display();
return s;
}
/*
istream& operator >> (istream& s, regex& a){
s >> a.alpha;
return s;
}
*/