递归函数处理问题类型
作者:互联网
#include<bits/stdc++.h> using namespace std; string read(){ string s,st; char c; int n; while(cin>>c){ if(c=='['){ cin>>n; st=read(); while(n--) s+=st; } else if(c==']'){ return s; } else{ s+=c; } } } int main() { cout<<read(); return 0; }
对于这类问题可以写一个递归输入函数,而不是输入完再处理。
对于每一个[ ]都为一个函数处理
标签:string,递归函数,处理,cin,st,int,read,类型,else 来源: https://www.cnblogs.com/YYcanmake/p/16596333.html