摘要: 无序map容器 对于有顺序要求的问题,map会更高效一些 对于查找问题,unordered_map会更加高效一些 #include <iostream> #include <unordered_map> int main() { std::unordered_map<int, std::string 阅读全文
posted @ 2022-09-05 18:41 thomas_blog 阅读(63) 评论(0) 推荐(0) 编辑