随笔分类 - 09_学习
摘要:**一. 知识点:** unordered_map是hash table 链表的一种。官方提供了这种容器,特点是无序。存储在桶中。 **二. 详解 :** //官方定义的结构体template < class Key, class T, class Hash = hash<Key>, class P
阅读全文
posted @ 2023-07-16 23:31
Labant