- Mastering C++ Programming
- Jeganathan Swaminathan
- 94字
- 2021-07-02 18:28:53
Unordered maps
An unordered map works in a manner similar to a map, except that the internal behavior of these containers differs. A map makes use of red-black trees while unordered map makes use of hash tables. The time complexity of map operations is O( log N) while that of unordered map operations is O(1); hence, an unordered map tends to be faster than a map.
The values stored in an unordered map are not organized in any particular fashion, unlike in a map where values are sorted by keys.
推薦閱讀
- 深入核心的敏捷開發:ThoughtWorks五大關鍵實踐
- 程序設計與實踐(VB.NET)
- Java 9 Concurrency Cookbook(Second Edition)
- R語言數據可視化之美:專業圖表繪制指南
- Django:Web Development with Python
- 用Flutter極速構建原生應用
- Python編程:從入門到實踐
- ASP.NET程序設計教程
- Apache Spark 2.x for Java Developers
- 劍指大數據:企業級數據倉庫項目實戰(在線教育版)
- 微信小程序開發與實戰(微課版)
- Frank Kane's Taming Big Data with Apache Spark and Python
- Clojure for Machine Learning
- 微課學人工智能Python編程
- Python Machine Learning Blueprints:Intuitive data projects you can relate to