-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBalanced parantheses.cpp
94 lines (75 loc) · 1.98 KB
/
Balanced parantheses.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
#include<bits/stdc++.h>
#define PI acos(-1)
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define READ(f) freopen(f, "r", stdin)
#define WRITE(f) freopen(f, "w", stdout)
#define lli long long int
#define ull unsigned long long int
#define pii pair < int, int>
#define pll pair < ll, ll>
#define sc scanf
#define scin(x) sc("%d",&(x))
#define scln(x) sc("%lld",&(x))
#define pf printf
#define ms(a,b) memset(a,b,sizeof(a))
#define veci vector<int>
#define vecl vector<long long int>
#define pb push_back
long power(long int x, long int y){ int temp; if( y == 0) return 1; temp = power(x, y/2); if (y%2 == 0) return temp*temp; else return x*temp*temp; }
/*lli gcd(lli x,lli y)
{
if(x==0) return y;
return gcd(y%x,x);
}*/
/* Your
Code
Starts
Here
*/
using namespace std;
void Parseparenthesis(string input)
{
stack<int> s;
char a, b, c;
int line=0;
for (int i=0; i<input.length(); i++)
{
if(input[i]=='\n') line++;
if ( input[i]=='{')
{
s.push( line );
}
else
{
if(input[i]== '}' )
{
if (s.empty())
cout << "Closing brace not matched in line " << line << endl;
else
s.pop();
}
}
}
if (!s.empty())
{ while(!s.empty())
{
cout << "Opening Brace not matched in line " << s.top() << endl;
s.pop();
}
}
}
int main()
{
string input;
string line;
cout << "Enter the input line" << endl;
while(getline(cin,line))
{
if(line=="^Z")
break;
input += "\n" + line;
}
Parseparenthesis(input);
return 0;
}