std::unordered_map include
时间: 2023-07-06 18:34:47 浏览: 67
并查集全数据类型模板(内部用unordered_map实现)
To use std::unordered_map in C++, you need to include the <unordered_map> header file in your code. This header file defines the unordered_map template class and its associated functions and types. Here is an example of how to include it:
```c++
#include <unordered_map>
```
Once you have included this header file, you can start using the std::unordered_map class in your code.
阅读全文