C中的哈希表

前端之家收集整理的这篇文章主要介绍了C中的哈希表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
C std :: map O(log n)的插入/删除/查找时间是否为是否可以实现O(1)哈希表?

解决方法

Is the insertion/deletion/lookup time of a C++ map O(log n)?

是.

Is it possible to implement an O(1) hash table?

当然.标准库还提供了一个为std::unordered_map.

原文链接:https://www.f2er.com/c/112590.html

猜你在找的C&C++相关文章