-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkuohao.cpp
More file actions
84 lines (78 loc) · 1007 Bytes
/
kuohao.cpp
File metadata and controls
84 lines (78 loc) · 1007 Bytes
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
#include"header_file.h"
#include<stack>
using namespace std;
int main(void)
{
stack<char> v;
string s;
cout<<"input s:";
cin>>s;
if(s.size()%2!=0)
{
cout<<"no"<<endl;
}
else
{
for(string::iterator it=s.begin();it!=s.end();it++)
{
if(v.size()==0)
{
if(*it==']'||*it==')')
{
cout<<"no"<<endl;
break;
}
else
v.push(*it);
}
else
{
if((*it)=='[')
{
if(v.top()=='(')
{
cout<<"no"<<endl;
break;
}
else
{
v.push(*it);
}
}
if((*it)==']')
{
if(v.top()=='(')
{
cout<<"no"<<endl;
break;
}
else
{
if(v.top()=='[')
{
v.pop();
}
}
}
if((*it)=='(')
{
v.push(*it);
}
if((*it)==')')
{
if(v.top()=='(')
{
v.pop();
}
else if(v.top()=='[')
{
cout<<"no"<<endl;
break;
}
}
}
}
if(v.size()==0)
cout<<"yes"<<endl;
}
}