由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请教sgi hash_map
相关主题
c++ string 一问C++ template question
C++ STL map find does not work ???一个c++小问题
请教如何使用qsort() to sort string.问个c++的template的问题
如何让这个cur变量正确指向新地址请教如何自己C++编程牛逼些
which str_cmp code is better?这两种容器定义形式有区别吗?
弱问一个请教一个C++ typedef的问题
c++ private 问题question about const reference
用STL map的时候怎么自己定义大小比较的关系[合集] static const代替define的performance tradeoff在哪里?
相关话题的讨论汇总
话题: const话题: std话题: char话题: display1话题: hash
进入Programming版参与讨论
1 (共1页)
L*******s
发帖数: 63
1
编译器好像是 g++ 4.3.4
struct eqstr
{
inline bool operator()(const char* s1, const char* s2) const
{
return 0 == strcmp(s1, s2);
}
};
typedef __gnu_cxx::hash_map >, eqstr> MyTable;
现在有
MyTable t;
中途进行一系列添加操作
每隔一段时间进行以下输出
std::cout << t.size() << std::endl;
std::for_each(t.begin(), t.end(), display1);
display1如下:
void display1(std::pair pr)
{
std::cout << (pr.second ? "T " : "F ") << pr.first << std::endl;
}
我现
t****t
发帖数: 6806
2
check post 21647?

*

【在 L*******s 的大作中提到】
: 编译器好像是 g++ 4.3.4
: struct eqstr
: {
: inline bool operator()(const char* s1, const char* s2) const
: {
: return 0 == strcmp(s1, s2);
: }
: };
: typedef __gnu_cxx::hash_map: >, eqstr> MyTable;

1 (共1页)
进入Programming版参与讨论
相关主题
[合集] static const代替define的performance tradeoff在哪里?which str_cmp code is better?
const_cast问题弱问一个
function declarationc++ private 问题
新手请教一个javascript JQuery问题用STL map的时候怎么自己定义大小比较的关系
c++ string 一问C++ template question
C++ STL map find does not work ???一个c++小问题
请教如何使用qsort() to sort string.问个c++的template的问题
如何让这个cur变量正确指向新地址请教如何自己C++编程牛逼些
相关话题的讨论汇总
话题: const话题: std话题: char话题: display1话题: hash