摘要: #include <iostream> #include <string> #include <stack> // https://zh.cppreference.com/w/cpp/container/stack // std::stack 类是容器适配器,它给予程序员栈的功能——特别是 FILO (先进后出)数据结构。 // 该类模板表现为底层容器的包装器——只提供特定函数集合。栈从被称作栈顶 阅读全文
posted @ 2019-12-22 16:19 路边的十元钱硬币 阅读(1857) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <deque> // https://zh.cppreference.com/w/cpp/container/deque // vector 和 deque 的差别 // https://www.cnblogs.com/zhuyf87/archive/2012/12/09/2809896.html usi 阅读全文
posted @ 2019-12-22 15:58 路边的十元钱硬币 阅读(1072) 评论(0) 推荐(0) 编辑