b********e 发帖数: 215 | 1 发现java里有hash table,但是c++ stl好像没有hash table,如果面试的时候写C++程
序要用到hash table怎么办?谢谢。 |
r*******y 发帖数: 290 | 2 STL has hashtable, hash_set,hash_map,hash_multiset, hash_multimap
【在 b********e 的大作中提到】 : 发现java里有hash table,但是c++ stl好像没有hash table,如果面试的时候写C++程 : 序要用到hash table怎么办?谢谢。
|
h**o 发帖数: 347 | 3 hashtable is not iso yet
【在 r*******y 的大作中提到】 : STL has hashtable, hash_set,hash_map,hash_multiset, hash_multimap
|
r*******y 发帖数: 290 | 4 en, you are right
But it's provided in SGI STL
【在 h**o 的大作中提到】 : hashtable is not iso yet
|
l*****d 发帖数: 236 | 5 Isn't std::map hash?
【在 h**o 的大作中提到】 : hashtable is not iso yet
|
r*******y 发帖数: 290 | 6 SGI STL uses R-B tree to implement map
they provide anyother map using hash as hash_map
【在 l*****d 的大作中提到】 : Isn't std::map hash?
|
l*****d 发帖数: 236 | 7 see...Looks like similar as Perl's hash?
【在 r*******y 的大作中提到】 : SGI STL uses R-B tree to implement map : they provide anyother map using hash as hash_map
|