由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - unordered_map?
相关主题
c+= 怎么实现 hashtable 的?一个小问题
C++ 有现成的 hashtable 库吗?1999年出版的C,C++,Java语言教程过期了吗??
请教函数 INIT 怎么能free memory请问delete的问题
boost::function 的 syntax 问题这里的人用BOOST都是用来做什么?
pointer to functionGCC TR1 实现regex 没?
cout 没有输出, 请教有谁知道C++ TR1 regex 如何处理 Turkish-I problem 吗?
C++里get array size的问题 (转载)JAVA的初衷本来就是C++太复杂了,productivity不行
cpp gz filehow's the new c++ standard (c++11)
相关话题的讨论汇总
话题: unordered话题: umultimap话题: tr1话题: std话题: map
进入Programming版参与讨论
1 (共1页)
c*********3
发帖数: 197
1
刚刚开始学TR1. 下面程序编译就是一堆错。请高手指点一下
是用g++ -std=gnuc++0x 编译的。
#include
#include
using std::tr1::unordered_map;
typedef std::tr1::unordered_multimap umultimap_id;
using namespace std;
void print_unordered_multimap(const umultimap_id& mm)
{
for(umultimap_id::const_iterator it = mm.begin();
it != mm.end();
++it)
{
cout << "[" << it->first << "," << it->second << "] ";
}
cout << endl;
}
int main(){
umultimap_id mm;
mm.insert(umultima
r*********r
发帖数: 3195
2
nothing wrong with the code.
just use the vanilla g++, without the gnuc++0x option.
looks like with this option, the iostream library is not set up correctly.

【在 c*********3 的大作中提到】
: 刚刚开始学TR1. 下面程序编译就是一堆错。请高手指点一下
: 是用g++ -std=gnuc++0x 编译的。
: #include
: #include
: using std::tr1::unordered_map;
: typedef std::tr1::unordered_multimap umultimap_id;
: using namespace std;
: void print_unordered_multimap(const umultimap_id& mm)
: {
: for(umultimap_id::const_iterator it = mm.begin();

c*********3
发帖数: 197
3
Thanks. It works.
1 (共1页)
进入Programming版参与讨论
相关主题
how's the new c++ standard (c++11)pointer to function
其实很多C++11的feature都是从TR1, Boost,过来的老feature了cout 没有输出, 请教
boost intrusive unordered_set erase_and_dispose出错C++里get array size的问题 (转载)
xcode for leopard BUG??? help.cpp gz file
c+= 怎么实现 hashtable 的?一个小问题
C++ 有现成的 hashtable 库吗?1999年出版的C,C++,Java语言教程过期了吗??
请教函数 INIT 怎么能free memory请问delete的问题
boost::function 的 syntax 问题这里的人用BOOST都是用来做什么?
相关话题的讨论汇总
话题: unordered话题: umultimap话题: tr1话题: std话题: map