由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++ 有现成的 hashtable 库吗?
相关主题
问几个关于hash, map, set的问题 (转载)how to use hashtable in C++
弱弱的问问hash, hashtable? (转载)unordered_map?
c+= 怎么实现 hashtable 的?auto_ptr_array.h 疑问
STL map[合集] 问个面试题
一个关于unordered_map/hashmap的问题问个弱问题
C++ STL的unordered_map, unordered_set,map,set很慢c++ std::abs(int) ambiguous?
请教C++中的unordered_set多线程有什么优化的方法?
还请教一个关于C++的问题求助:expected class name before "(" token
相关话题的讨论汇总
话题: map话题: unordered话题: c++话题: include话题: hashtable
进入Programming版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
类似string, stack之类的library?
JAVA 好像有。
S**I
发帖数: 15689
2
unordered_set, unordered_map

【在 c**********e 的大作中提到】
: 类似string, stack之类的library?
: JAVA 好像有。

g***i
发帖数: 4272
3
#include
using namespace __gnu_cxx;
hash_map
c**********e
发帖数: 2007
4
俺的编译器找不到这个库。

【在 g***i 的大作中提到】
: #include
: using namespace __gnu_cxx;
: hash_map

g***i
发帖数: 4272
5
这是g++的,
windows下貌似是
#include
using namespace stdext;
不保证正确,没再windows上写过程序

【在 c**********e 的大作中提到】
: 俺的编译器找不到这个库。
w***c
发帖数: 8
6
#include
typedef std::tr1::unordered_map hashmap;
在vs 2010 里面直接用#include
在linux和windows下均可使用。
c**********e
发帖数: 2007
7
类似string, stack之类的library?
JAVA 好像有。
S**I
发帖数: 15689
8
unordered_set, unordered_map

【在 c**********e 的大作中提到】
: 类似string, stack之类的library?
: JAVA 好像有。

g***i
发帖数: 4272
9
#include
using namespace __gnu_cxx;
hash_map
c**********e
发帖数: 2007
10
俺的编译器找不到这个库。

【在 g***i 的大作中提到】
: #include
: using namespace __gnu_cxx;
: hash_map

g***i
发帖数: 4272
11
这是g++的,
windows下貌似是
#include
using namespace stdext;
不保证正确,没再windows上写过程序

【在 c**********e 的大作中提到】
: 俺的编译器找不到这个库。
w***c
发帖数: 8
12
#include
typedef std::tr1::unordered_map hashmap;
在vs 2010 里面直接用#include
在linux和windows下均可使用。
c**********e
发帖数: 2007
13
在VC express 2010里,如下两个库都可以找到。
#include
#include
我用的linux编译器CC很烂,找不到这些库。
谢谢诸位提供的信息。
1 (共1页)
进入Programming版参与讨论
相关主题
求助:expected class name before "(" token一个关于unordered_map/hashmap的问题
c++0x unordered_map vs sgi hash_mapC++ STL的unordered_map, unordered_set,map,set很慢
请教c++的string vector问题,谢谢! (转载)请教C++中的unordered_set
namespace defined in another file还请教一个关于C++的问题
问几个关于hash, map, set的问题 (转载)how to use hashtable in C++
弱弱的问问hash, hashtable? (转载)unordered_map?
c+= 怎么实现 hashtable 的?auto_ptr_array.h 疑问
STL map[合集] 问个面试题
相关话题的讨论汇总
话题: map话题: unordered话题: c++话题: include话题: hashtable