摘要: 简单题,直接用STACK模拟整个过程。模拟出栈时,应注意保护现场,等到递归完成后返回。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int MAX=105; 7 8 char ans[MAX*2]; 9... 阅读全文
posted @ 2014-06-23 09:23 chenjunjie1994 阅读(170) 评论(0) 推荐(0) 编辑