-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBracketSequence.cpp
More file actions
51 lines (49 loc) · 1.04 KB
/
BracketSequence.cpp
File metadata and controls
51 lines (49 loc) · 1.04 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
#include <bits/stdc++.h>
using namespace std;
bool areParanthesisBalanced(string expr)
{
stack<char> s;
char x;
for (int i = 0; i < expr.length(); i++)
{
if (expr[i] == '(' || expr[i] == '[' || expr[i] == '{')
{
s.push(expr[i]);
continue;
}
if (s.empty())
return false;
switch (expr[i])
{
case ')':
x = s.top();
s.pop();
if (x == '{' || x == '[')
return false;
break;
case '}':
x = s.top();
s.pop();
if (x == '(' || x == '[')
return false;
break;
case ']':
x = s.top();
s.pop();
if (x == '(' || x == '{')
return false;
break;
}
}
return (s.empty());
}
int main()
{
string str;
cin >> str;
if (areParanthesisBalanced(str))
cout << "Valid Bracket Seq.";
else
cout << "Invalid Bracket Seq.";
return 0;
}