字符串操作 + stack类型运用
2023-08-11 17:04:38
发布于:上海
7阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
stack<char> st;
char k[1001];
gets(k);
for(int i=0;i<strlen(k);i++){
if(k[i]!='@'){
st.push(k[i]);
}
else{
if(!st.empty()) st.pop();
}
}
char a[10001];
int len=strlen(a);
while(!st.empty()){
a[len++]=st.top();
st.pop();
}
for(int i=len-1;i>=0;i--) cout<<a[i];
return 0;
}
这里空空如也
有帮助,赞一个