摘要: void popSeq(listin,stack st,vector out,vector>& res,int len) { if (out.size() == len) { res.push_back(out); return; } //出栈 if (st.size() > 0) { out.push_back(s... 阅读全文
posted @ 2019-08-01 23:14 unique_ptr 阅读(182) 评论(0) 推荐(0) 编辑