哈希表
Implementation of Hash Table in Python
基础
O(n) 空间复杂度, 实现 近似 O(1) 时间复杂度的插入、查找、删除等
哈希碰撞:拉链法和线性探测法
defaultdict: if a key is not found in the dictionary, then instead of a KeyError being thrown, a new entry is created
C++ 中的哈希集合为 unordered_set,可以查找元素是否在集合中。如果需要同时存储键 和值,则需要用 unordered_map
代码
排序
增/改/删
Last updated