目录
map, set, multimap, and multiset
hash_map, hash_set, hash_multimap, and hash_multiset
常见排序算法及其时间复杂度
常见排序算法及其时间复杂度_视界IT的博客-CSDN博客_常见排序算法及时间复杂度
C++ STL容器时间复杂度|
时间复杂度:https://blog.csdn.net/bandaoyu/article/details/86447291
map, set, multimap, and multiset
上述四种容器采用红黑树实现,红黑树是平衡二叉树的一种。不同操作的时间复杂度近似为:
插入: O(logN)
查看:O(logN)
删除:O(logN)
hash_map, hash_set, hash_multimap, and hash_multiset
上述四种容器采用哈希表实现,不同操作的时间复杂度为&#x