摘要: 14unordered container无序容器 0、课前秀 + 比起有序容器,无序容器(unordered_map/unordered_multimap和unordered_set/unordered_multiset)里的元素是不排序的。 + map和set内部是 红黑树 ,插入元素时会自动排 阅读全文
posted @ 2020-05-09 18:49 im天行 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 13emplace_back减少内存拷贝 课前秀 + 与 比, 能就地通过参数构造对象,不需要拷贝或者移动内存 。 + 在cppreference.com里搜索“emplace_back”,其实是容器里的一个方法而已。 + list,deque,vector,pmr::list,pmr::deque 阅读全文
posted @ 2020-05-09 07:56 im天行 阅读(337) 评论(0) 推荐(0) 编辑