#include<bits/stdc++.h>
using namespace std;
//stack<数据类型> 栈名;
stack<char> q;
int main(){
string s;
cin>>s;
int k=s.size();
//遍历字符串:
for(int i=0;i<k;i++){
if(s[i]=='(' || s[i]=='[') q.push(s[i]);
else if(s[i]==')'){
if(q.size()){
if(q.top()=='(') q.pop();
else{
cout<<"Wrong\n";
return 0;
}
}else{
cout<<"Wrong\n";
return 0;
}
}else if(s[i]==']'){
if(q.size()){
if(q.top()=='[') q.pop();
else{
cout<<"Wrong\n";
return 0;
}
}else{
cout<<"Wrong\n";
return 0;
}
}
}
if(q.size()) cout<<"Wrong";
else cout<<"OK";
return 0;
}
#include<bits/stdc++.h>
using namespace std;
//stack<数据类型> 栈名;
stack<int> s;
int main(){
int x;
cin>>x;
s.push(x);
//1.进栈 栈名.push(x);
s.push(16);
s.push(20);
//2.查看栈顶元素 栈名.top();
cout<<s.top()<<endl;
//3.出栈 栈名.pop();
s.pop();
cout<<"当前栈顶元素:"<<s.top()<<endl;
//4.获取栈的长度 栈名.size();
cout<<"当前栈的大小: "<<s.size()<<endl;
//5. 判断栈是否为空 size() 或者 栈名.empty();
if(s.size()) cout<<"栈不空\n";
else cout<<"栈空\n";
//6.清空栈
s.push(1);
s.push(2);
s.push(6);
s.push(202);
while(s.size()) cout<<s.top()<<" ",s.pop();
if(s.size()) cout<<"栈不空\n";
else cout<<"栈空\n";
return 0;
}
#include<bits/stdc++.h>
using namespace std;
//创建栈:
/*
stack <数据类型> 栈的名字;
获取栈顶栈顶元素:栈名.top();
出栈:删除栈顶元素:栈名.pop();
求栈的长度:栈名.size();
栈空:empty() 或者 size()
//清空栈:
while(s.size()){//栈不为空
cout<<s.top()<<" ";
s.pop();
}
*/
stack <int> s;
int main(){
//入栈:
s.push(2);
s.push(5);
s.push(0);
//获取栈顶栈顶元素:栈名.top();
cout<<s.top()<<endl;
//出栈:删除栈顶元素:栈名.pop();
s.pop();
cout<<s.top()<<endl;
//求栈的长度:栈名.size();
cout<<"栈的长度:" <<s.size()<<endl;
//栈空:empty() 或者 size()
cout<<s.empty()<<endl;
//清空栈:
while(s.size()){//栈不为空
cout<<s.top()<<" ";
s.pop();
}
cout<<s.empty()<<endl;
return 0;
}