728x90
반응형
- std::unordered_map
This data structure is an associative container the contains key-value pairs with unique keys.
Search, insertion, and removal of elements have average constane-time complexity
Internally, the elements are not osorte in any particular order, but organized into buckets.
- Properties
Associative container
Unique keys
Reference : https://en.cppreference.com/w/cpp/container/unordered_map
728x90
반응형
'개념공부 > C, C++, IDE' 카테고리의 다른 글
[C언어] 변수의 유효 범위 (variable scope) (0) | 2023.07.03 |
---|---|
Bitwise Operation, Operator (비트연산) (0) | 2023.01.17 |
[C++ STL] map (0) | 2023.01.16 |
[LeetCode] 1. Two Sum (1) | 2023.01.09 |
[LeetCode] 1030. Matrix Cells in Distance Order, C++ (0) | 2023.01.09 |