欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++STL hash_set,hash_map在哪里?,g++编译器

程序员文章站 2022-03-23 13:45:15
...

底层用hashtable实现
F:\x86_64-8.1.0-release-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++\backward\hash_set

测试代码

#include<list>
#include <iostream>

#include<hash_set>
using namespace std;
using namespace __gnu_cxx;//注意namespace
int main()
{  
    hash_set<int> set;
    set.insert(3);
    cout<<set.size()<<endl;

    return 0;   
}

相关标签: 数据结构与算法