-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbracketChecker.cpp
207 lines (163 loc) · 3.86 KB
/
bracketChecker.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
#include <iostream>
using namespace std;
template <class T>
struct stackData
{
T data;
stackData<T> *next;
};
template <class T>
class stackList
{
private:
stackData<T> *head;
public:
stackList()
{
head = NULL;
}
stackData<T>* getHead()
{
return head;
}
void Push(T element)
{
if (isempty())
{
//if stack was empty
stackData<T> *temp = new stackData<T>;
temp->data = element;
temp->next = NULL;
head = temp;
}
else
{
//if stack was empty
stackData<T> *temp = new stackData<T>;
temp->data = element;
temp->next = head;
head = temp;
}
}
T Pop()
{
T toreturn;
if (isempty())
{
cout << "\n\t\t Stack is empty --- no element " << endl;
return -1;
}
else
{
//if stack was empty
stackData<T> *temp = head;
head = head->next;
toreturn = temp->data;
delete temp;
return toreturn;
}
}
bool isempty()
{
if (head == NULL)
{
return true; //empty
}
return false; //not empty
}
void clear()
{
while (!isempty())
{
Pop();
}
}
void Peak()
{
if (isempty())
{
cout << "\n\t\t Stack is empty --- no element " << endl;
}
else
{
cout << "\n\t\t Value at head is : " << head->data << endl;
}
}
};
void bracketChecker();
int main()
{
bracketChecker();
cout << endl;
return 0;
}
void bracketChecker()
{
stackList<char> bracketStack;
//for taking the input
char expression[100];
//taking the input
cout << "\n\t\t Enter the expression : ";
cin.get(expression, 100, '\n');
//push braces to stack
for (int i = 0; i < 100 && expression[i] != '\0'; i++)
{
//checking opening braces and pushing them only
if (expression[i] == '(' || expression[i] == '{' || expression[i] == '[')
{
bracketStack.Push(expression[i]);
}
}
char comparewith;
char fromstack;
bool correct = 1;
//after pushing all now checking on the each closing in the expression
for (int i = 0; i < 100 && expression[i] != '\0'; i++)
{
//checking opening braces and pushing them only
if (expression[i] == ')' || expression[i] == '}' || expression[i] == ']')
{
if (!bracketStack.isempty())
{
//finding the corresponding opening braces
if (expression[i] == ')')
{
comparewith = '(';
}
if (expression[i] == '}')
{
comparewith = '{';
}
if (expression[i] == ']')
{
comparewith = '[';
}
if (bracketStack.Pop() == comparewith)
{
continue;
}
else
{
correct = 0;
cout << "\n\t\t Expression misses the bracket --- Invalid expression " << endl;
break;
}
}
else
{
correct = 0;
cout << "\n\t\t Expression misses the bracket --- Invalid expression " << endl;
}
}
}
if(!bracketStack.isempty())
{
correct = 0;
cout << "\n\t\t Expression misses the bracket --- Invalid expression " << endl;
}
if (correct == 1)
{
cout << "\n\t\t Expression is valid " << endl;
}
bracketStack.clear();
}