-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment 2.cpp
More file actions
957 lines (905 loc) · 16.1 KB
/
Assignment 2.cpp
File metadata and controls
957 lines (905 loc) · 16.1 KB
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
#include<iostream>
#include<string>
#include<string.h>
using namespace std;
//Structure of Node
struct Node
{
char data;
Node* next;
};
class List
{
private:
Node* head; //Address of Head Node.
int length; //Get current size of list.
public:
List(); //Initialize function
bool IsFull() const;
bool IsEmpty() const;
int GetLength() const;
char ReadHead() const;
void InsertAtHead(char value);
char DeleteFromHead();
};
List::List() // Constructor of class
{
length = 0;
head = NULL;
}
//Check if there is enough system memory available;
bool List::IsFull() const
{
Node* temp;
try {
temp = new Node;
delete temp;
return false;
}
catch (bad_alloc exception)
{
return true;
}
}
bool List::IsEmpty() const
{
return (length == 0 || head == NULL);
}
int List::GetLength() const
{
return length;
}
//Function returns the data vaule at head of the list, use as helper function to implement top() of stack
char List::ReadHead() const
{
char data = '`';
if (head != NULL)
{
data = head->data;
}
return data;
}
//Insert a new node with value at the head of List
void List::InsertAtHead(char value)
{
Node* newNode = new Node;
newNode->data = value;
newNode->next = head;
head = newNode;
length++;
}
//Delete node with value of a from List
char List::DeleteFromHead()
{
char data = '`';
if (head != NULL)
{
Node* temp = head;
head = temp->next;
data = temp->data;
delete temp;
length--;
}
return data;
}
class Stack
{
private:
List list;
public:
bool isFull() const;
bool isEmpty() const;
char top() const;
void push(char value);
char pop();
};
bool Stack::isFull() const
{
return list.IsFull();
}
bool Stack::isEmpty() const
{
return list.IsEmpty();
}
char Stack::top() const
{
return list.ReadHead();
}
void Stack::push(char value)
{
list.InsertAtHead(value);
}
char Stack::pop()
{
return list.DeleteFromHead();
}
struct NodeStr
{
string data;
NodeStr* next;
};
class ListStr
{
private:
NodeStr* head; //Address of Head Node.
int length; //Get current size of list.
public:
ListStr(); //Initialize function
bool IsFull() const;
bool IsEmpty() const;
int GetLength() const;
string ReadHead() const;
void InsertAtHead(string value);
string DeleteFromHead();
};
ListStr::ListStr() // Constructor of class
{
length = 0;
head = NULL;
}
//Check if there is enough system memory available;
bool ListStr::IsFull() const
{
Node* temp;
try {
temp = new Node;
delete temp;
return false;
}
catch (bad_alloc exception)
{
return true;
}
}
bool ListStr::IsEmpty() const
{
return (length == 0 || head == NULL);
}
int ListStr::GetLength() const
{
return length;
}
//Function returns the data vaule at head of the list, use as helper function to implement top() of stack
string ListStr::ReadHead() const
{
string data = "";
if (head != NULL)
{
data = head->data;
}
return data;
}
//Insert a new node with value at the head of List
void ListStr::InsertAtHead(string value)
{
NodeStr* newNode = new NodeStr;
newNode->data = value;
newNode->next = head;
head = newNode;
length++;
}
//Delete node with value of a from List
string ListStr::DeleteFromHead()
{
string data = "";
if (head != NULL)
{
NodeStr* temp = head;
head = temp->next;
data = temp->data;
delete temp;
length--;
}
return data;
}
class StackStr
{
private:
ListStr list;
public:
bool isFull() const;
bool isEmpty() const;
string top() const;
void push(string value);
string pop();
};
bool StackStr::isFull() const
{
return list.IsFull();
}
bool StackStr::isEmpty() const
{
return list.IsEmpty();
}
string StackStr::top() const
{
return list.ReadHead();
}
void StackStr::push(string value)
{
list.InsertAtHead(value);
}
string StackStr::pop()
{
return list.DeleteFromHead();
}
struct NodeInt
{
int data;
NodeInt* next;
};
class ListInt
{
private:
NodeInt* head; //Address of Head Node.
int length; //Get current size of list.
public:
ListInt(); //Initialize function
bool IsFull() const;
bool IsEmpty() const;
int GetLength() const;
int ReadHead() const;
void InsertAtHead(int value);
int DeleteFromHead();
};
ListInt::ListInt() // Constructor of class
{
length = 0;
head = NULL;
}
//Check if there is enough system memory available;
bool ListInt::IsFull() const
{
Node* temp;
try {
temp = new Node;
delete temp;
return false;
}
catch (bad_alloc exception)
{
return true;
}
}
bool ListInt::IsEmpty() const
{
return (length == 0 || head == NULL);
}
int ListInt::GetLength() const
{
return length;
}
//Function returns the data vaule at head of the list, use as helper function to implement top() of stack
int ListInt::ReadHead() const
{
int data = 0;
if (head != NULL)
{
data = head->data;
}
return data;
}
//Insert a new node with value at the head of List
void ListInt::InsertAtHead(int value)
{
NodeInt* newNode = new NodeInt;
newNode->data = value;
newNode->next = head;
head = newNode;
length++;
}
//Delete node with value of a from List
int ListInt::DeleteFromHead()
{
int data = 0;
if (head != NULL)
{
NodeInt* temp = head;
head = temp->next;
data = temp->data;
delete temp;
length--;
}
return data;
}
class StackInt
{
private:
ListInt list;
public:
bool isFull() const;
bool isEmpty() const;
int top() const;
void push(int value);
int pop();
};
bool StackInt::isFull() const
{
return list.IsFull();
}
bool StackInt::isEmpty() const
{
return list.IsEmpty();
}
int StackInt::top() const
{
return list.ReadHead();
}
void StackInt::push(int value)
{
list.InsertAtHead(value);
}
int StackInt::pop()
{
return list.DeleteFromHead();
}
enum expressionType { postfix, infix, prefix };
class Expression
{
private:
string expression;
expressionType expression_type;
int evaluatePrefix() const;
int evaluateInfix() const;
int evaluatePostfix() const;
void prefixToInfix();
void prefixToPostfix();
void infixToPrefix();
void infixToPostfix();
void postfixToPrefix();
void postfixToInfix();
bool isOperand(char ch) const
{
// If the scanned character is an operand, add it to output string.
if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z'))
return true;
else if (ch >= '0' && ch <= '9')
return true;
else
return false;
}
int Precedence(char a)
{
if (a == '+' || a == '-')
return 1;
else if (a == '*' || a == '/')
return 2;
else
return 0;
}
int ApplyOPerator(int var1, int var2, char a) const
{
switch (a)
{
case '+':
return var1 + var2;
case '-':
return var1 - var2;
case '*':
return var1 * var2;
case '/':
return var1 / var2;
}
}
int ConvertInt(char a)
{
if (a == '0')
return 0;
else if (a == '1')
return 1;
else if (a == '2')
return 2;
else if (a == '3')
return 3;
else if (a == '4')
return 4;
else if (a == '5')
return 5;
else if (a == '6')
return 6;
else if (a == '7')
return 7;
else if (a == '8')
return 8;
else if (a == '9')
return 9;
}
// to check the precedence of operators.
int precedence(char c) const
{
if (c == '^')
return 3;
else if (c == '*' || c == '/')
return 2;
else if (c == '+' || c == '-')
return 1;
else
return -1;
}
public:
Expression()
{
/*int i;
for (i = 0; i < 30-1; i++)
{
expression[i] = '0';
}*/
this->expression = "00000000000000000000000";
this->expression_type = infix;
}
void convertExpression(expressionType convertTo)
{
if (this->expression_type == prefix)
{
switch (convertTo)
{
case infix:
//prefixToInfix();
break;
case postfix:
//prefixToPostfix();
break;
}
}
else if (this->expression_type == infix)
{
switch (convertTo)
{
case prefix:
infixToPrefix();
break;
case postfix:
infixToPostfix();
break;
}
}
else if (this->expression_type == postfix)
{
switch (convertTo)
{
case prefix:
//postfixToPrefix();
break;
case infix:
//postfixToInfix();
break;
}
}
}
int evaluateExpression()
{
switch (this->expression_type)
{
case prefix:
evaluatePrefix();
break;
case infix:
evaluateInfix();
break;
case postfix:
evaluatePostfix();
break;
}
}
void Display()
{
switch (this->expression_type)
{
case prefix:
cout << "Prefix ";
break;
case infix:
cout << "Infix ";
break;
case postfix:
cout << "Postfix ";
break;
}
cout << "Notation: " << this->expression << endl;
}
void setExpression(string expression)
{
this->expression = expression;
}
};
int Expression::evaluateInfix() const
{
int val;
Stack S1;
StackInt S2;
int n = this->expression.length();
char ch;
for (int i = 0; i <= n; i++)
{
ch = this->expression[i];
if (ch == ' ')
continue;
else if (ch == '(')
S1.push(ch);
else if (isOperand(ch))
{
val = 0;
while (i < n && isOperand(this->expression[i]))
{
val = (val * 10) + (this->expression[i] - '0');
i++;
}
S2.push(val);
i--;
}
else if (ch == ')')
{
while (!S1.isEmpty() && S1.top() != '(')
{
int val2 = S2.pop();
int val1 = S2.pop();
char op = S1.pop();
S2.push(ApplyOPerator(val1, val2, op));
}
if (!S1.isEmpty())
S1.pop();
}
else
{
while (!S1.isEmpty() && precedence(S1.top()) >= precedence(ch))
{
int val2 = S2.pop();
int val1 = S2.pop();
char op = S1.pop();
S2.push(ApplyOPerator(val1, val2, op));
}
S1.push(this->expression[i]);
}
}
while (!S1.isEmpty())
{
int val2 = S2.pop();
int val1 = S2.pop();
char op = S1.pop();
S2.push(ApplyOPerator(val1, val2, op));
}
return S2.top();
}
int Expression::evaluatePrefix() const
{
StackInt S;
int val1, val2;
int n = this->expression.length();
char ch;
int eval;
for (int i = n-1; i >= 0; i--)
{
ch = this->expression[i];
if (isOperand(ch))
{
ch = ch - '0';
S.push(ch);
}
else
{
val1 = S.pop();
val2 = S.pop();
switch (ch)
{
case '+':
eval = val1 + val2;
S.push(eval);
break;
case '-':
eval = val1 - val2;
S.push(eval);
break;
case '*':
eval = val1 * val2;
S.push(eval);
break;
case '/':
eval = val1 / val2;
S.push(eval);
break;
}
}
}
return S.pop();
}
int Expression::evaluatePostfix() const
{
StackInt S;
int val1, val2;
int n = this->expression.length();
char ch;
int eval;
for (int i = 0; i <= n; i++)
{
ch = this->expression[i];
if (isOperand(ch))
{
ch = ch - '0';
S.push(ch);
}
else
{
val1 = S.pop();
val2 = S.pop();
switch (ch)
{
case '+':
eval = val1 + val2;
S.push(eval);
break;
case '-':
eval = val1 - val2;
S.push(eval);
break;
case '*':
eval = val1 * val2;
S.push(eval);
break;
case '/':
eval = val1 / val2;
S.push(eval);
break;
}
}
}
return S.pop();
}
void Expression::prefixToPostfix()
{
StackStr S;
string infixstr;
int n = this->expression.length();
char ch;
string cha;
string op1, op2, exp;
for (int i = n-1; i >=0; i--)
{
ch = this->expression[i];
if (isOperand(ch))
{
cha = ch;
S.push(cha);
}
else
{
op1 = S.top();
S.pop();
op2 = S.top();
S.pop();
exp = op1 + op2 + ch ;
S.push(exp);
}
}
this->expression = S.top();
this->expression_type = postfix;
}
void Expression::postfixToPrefix()
{
StackStr S;
string infixstr;
int n = this->expression.length();
char ch;
string cha;
string op1, op2, exp;
for (int i = 0; i <= n; i++)
{
ch = this->expression[i];
if (isOperand(ch))
{
cha = ch;
S.push(cha);
}
else
{
op1 = S.top();
S.pop();
op2 = S.top();
S.pop();
exp = ch + op2 + op1;
S.push(exp);
}
}
this->expression = S.top();
this->expression_type = prefix;
}
void Expression::prefixToInfix()
{
StackStr S;
string infixstr;
int n = this->expression.length();
char ch;
string cha;
string op1, op2, exp;
for (int i = n-1; i >= 0; i--)
{
ch = this->expression[i];
if (isOperand(ch))
{
cha = ch;
S.push(cha);
}
else
{
op1 = S.top();
S.pop();
op2 = S.top();
S.pop();
exp = '(' + op1 + ch + op2 + ')';
S.push(exp);
}
}
this->expression = S.top();
this->expression_type = infix;
}
void Expression::postfixToInfix()
{
StackStr S;
string infixstr;
int n = this->expression.length();
char ch;
string cha;
string op1, op2, exp;
for (int i = 0; i <= n; i++)
{
ch = this->expression[i];
if (isOperand(ch))
{
cha = ch;
S.push(cha);
}
else
{
op1 = S.top();
S.pop();
op2 = S.top();
S.pop();
exp = '(' + op2 + ch + op1 + ')';
S.push(exp);
}
}
this->expression = S.top();
this->expression_type = infix;
}
void Expression::infixToPostfix()
{
Stack stack;
string postfixStr;
//Check weather it is an infix expression or not.
if (this->expression_type == infix)
{
for (int i = 0; i < this->expression.length(); i++)
{
// If the scanned character is an operand, add it to output string.
char ch = this->expression[i];
if (isOperand(ch))
{
postfixStr += ch;
}
// If the scanned character is an (, push it to the stack.
else if (ch == '(')
{
stack.push(ch);
}
// If the scanned character is an ), pop and to output string from the stack
// until an ( is encountered.
else if (ch == ')')
{
while (stack.top() != '(' && !stack.isEmpty())
{
char op = stack.pop();
postfixStr += op;
}
if (stack.top() == '(')
{
stack.pop();
}
}
//If an operator is scanned
else {
while (!stack.isEmpty() && precedence(ch) <= precedence(stack.top()))
{
char op = stack.pop();
postfixStr += op;
}
stack.push(ch);
}
}
//Pop all the remaining elements from the stack
while (!stack.isEmpty())
{
char op = stack.pop();
postfixStr += op;
}
this->expression = postfixStr;
this->expression_type = postfix;
}
else
{
cout << "Sorry given expression is not in Infix notation." << endl;
}
}
void Expression::infixToPrefix()
{
Stack stack;
string prefixStr;
int size;
size = this->expression.length();
for (int i = size - 1; i >= 0; i--)
{
char ch = this->expression[i];
if (isOperand(ch))
{
prefixStr += ch;
}
else if (ch == ')')
{
stack.push(ch);
}
else if (ch == '(')
{
while (stack.top() != ')' && !stack.isEmpty())
{
char op = stack.pop();
prefixStr += op;
}
if (stack.top() == ')')
{
stack.pop();
}
}
else
{
if (stack.isEmpty())
stack.push(ch);
else
{
if (precedence(ch) > precedence(stack.top()))
{
stack.push(ch);
}
else if (precedence(ch) == precedence(stack.top()) && ch == '^')
{
while (precedence(ch) == precedence(stack.top()) && ch == '^')
{
prefixStr += stack.top();
stack.pop();
}
stack.push(ch);
}
else if (precedence(ch) == precedence(stack.top()))
{
stack.push(ch);
}
else
{
while ((!stack.isEmpty()) && (precedence(ch) < precedence(stack.top())))
{
prefixStr += stack.top();
stack.pop();
}
stack.push(ch);
}
}
}
}
this->expression = "";
while (!stack.isEmpty())
{
this->expression += stack.pop();
}
for (int i = prefixStr.length() - 1; i >= 0; i--)
{
this->expression += prefixStr[i];
}
this->expression_type = prefix;
}
int main()
{
Expression E1;
string expression = "a+b*(c+d)*e/f";
E1.setExpression(expression);
E1.Display();
E1.convertExpression(prefix);
E1.Display();
return 0;
}