-
Notifications
You must be signed in to change notification settings - Fork 0
/
dsal13.cpp
163 lines (161 loc) · 2.85 KB
/
dsal13.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
#include <iostream>
#include <string>
#include <stack>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <stack>
using namespace std;
class Ntree // Node Declaration
{
public:
char d;
Ntree *l, *r;
Ntree(char d)
{
this->d = d;
this->l = NULL;
this->r = NULL;
// l = Left, r = Right, d = character
}
};
class Stack_Node // Stack Declaration
{
public:
Ntree *ntree;
Stack_Node *n;
Stack_Node(Ntree *ntree) // Constructor
{
this->ntree = ntree;
n = NULL;
}
};
class ExpressTree
{
Stack_Node *top;
public:
ExpressTree()
{
top = NULL;
}
void clear()
{
top = NULL;
}
void push(Ntree *ptr)
{
if (top == NULL)
{
top = new Stack_Node(ptr);
}
else
{
Stack_Node *nptr = new Stack_Node(ptr);
nptr->n = top;
top = nptr;
}
}
Ntree *pop()
{
if (top == NULL)
{
cout << "UnderFlow!" << endl;
}
else
{
Ntree *ptr = top->ntree;
top = top->n;
return ptr;
}
return 0;
}
Ntree *peek()
{
return top->ntree;
}
void insertT(char val)
{
if (isOperand(val))
{
Ntree *nptr = new Ntree(val);
push(nptr);
}
else if (isOperator(val))
{
Ntree *nptr = new Ntree(val);
nptr->l = pop();
nptr->r = pop();
push(nptr);
}
else
{
cout << "Invalid Expression!" << endl;
return;
}
}
bool isOperand(char ch)
{
return ch >= 'a' && ch <= 'z';
}
bool isOperator(char ch)
{
return ch = '+' || ch == '-' || ch == '*' || ch == '/';
}
void Build_Tree(string eqn)
{
for (int i = eqn.length() - 1; i >= 0; i--)
{
insertT(eqn[i]);
}
}
void postfix()
{
Post(peek());
}
void Post(Ntree *ptr)
{
if (ptr != NULL)
{
Post(ptr->l);
Post(ptr->r);
cout << ptr->d;
}
}
void infix()
{
inOrder(peek());
}
void inOrder(Ntree *ptr)
{
if (ptr != NULL)
{
inOrder(ptr->l);
cout << ptr->d;
inOrder(ptr->r);
}
}
void prefix()
{
preOrder(peek());
}
void preOrder(Ntree *ptr)
{
if (ptr != NULL)
{
cout << ptr->d;
preOrder(ptr->l);
preOrder(ptr->r);
}
}
};
int main()
{
string s;
ExpressTree et;
cout << "\nEnter Equation in Prefix Form: ";
cin >> s;
et.Build_Tree(s);
cout << "Postfix : ";
et.postfix();
// cout << "\n";
}