由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - C++ Q56: map & typedef (C29)
相关主题
c++疑难问题。。求教:这个程序为什么不能编译?
狗家面经晕了,有人用iteration解n queens么
请问pure storage 的那道map 数据结构题问个简单coding问题
C++高手看下这个LC的LRU Cache的实现我发现我竟然学会了12种tree traversal的办法
One C++ question请问怎样写没有parent pointer的BST iterator?
const_reverse_iterator和reverse_iterator有什么区别?L家的高频题merge k sorted arrays giving iterators求讨论!
Why I can't compile this function successfullyreverse an array
一道M$算法题。看到一个题目
相关话题的讨论汇总
话题: maptype话题: themap话题: std话题: iterator话题: cout
进入JobHunting版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
typedef std::map MapType;
MapType theMap;
Referring to the code sample above, which one of the following blocks of
code displays the string contents of the entire map theMap?
a) MapType::iterator it = theMap.first();
while(it!= theMap.end()) std::cout << it;
b) MapType::iterator it = theMap.begin();
while(it!= theMap.end()) std::cout << theMap[it];
c) MapType::iterator it = theMap.begin();
while(it!= theMap.end()) std::cout << (*it++).second;
d) MapType::iterator it = theMap
h**6
发帖数: 4160
2
C
s*********t
发帖数: 1663
3
怎么A和D一样那

【在 c**********e 的大作中提到】
: typedef std::map MapType;
: MapType theMap;
: Referring to the code sample above, which one of the following blocks of
: code displays the string contents of the entire map theMap?
: a) MapType::iterator it = theMap.first();
: while(it!= theMap.end()) std::cout << it;
: b) MapType::iterator it = theMap.begin();
: while(it!= theMap.end()) std::cout << theMap[it];
: c) MapType::iterator it = theMap.begin();
: while(it!= theMap.end()) std::cout << (*it++).second;

c**********e
发帖数: 2007
4
You need a pair of new glasses. :)

【在 s*********t 的大作中提到】
: 怎么A和D一样那
s*********t
发帖数: 1663
5
oh shoot....

【在 c**********e 的大作中提到】
: You need a pair of new glasses. :)
1 (共1页)
进入JobHunting版参与讨论
相关主题
看到一个题目One C++ question
问个stl的iterator问题const_reverse_iterator和reverse_iterator有什么区别?
Bloomberg 电面Why I can't compile this function successfully
hash_map 的遍历问题一道M$算法题。
c++疑难问题。。求教:这个程序为什么不能编译?
狗家面经晕了,有人用iteration解n queens么
请问pure storage 的那道map 数据结构题问个简单coding问题
C++高手看下这个LC的LRU Cache的实现我发现我竟然学会了12种tree traversal的办法
相关话题的讨论汇总
话题: maptype话题: themap话题: std话题: iterator话题: cout