由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 再给大家出道题
相关主题
C++如何实现graph?JetBrains自宫,大家可以给丫烧纸了,atom很牛的样子
How to detect cycle with minimum space加拿大和美国税收的一些区别 (转载)
define an adjacent matrix for a graph关于malloc/free和循环
[合集] 两道面试题double free or corruption问题
最近半年python 3的用户有没有大增长 ?sizeof()的问题
一身汗。。。 C++中如果处理数组的维数中的负数?
一个python得小问题问几个问题
<%@ 这么读对吗? Angle bracket percent at一个小问题
相关话题的讨论汇总
话题: map话题: double话题: int话题: 道题话题: size
进入Programming版参与讨论
1 (共1页)
g*c
发帖数: 4510
1
#include
int main()
{
std::map> m;
int n = m.size();
}
有什么问题?
l*********s
发帖数: 5409
2
missing std:: for the second map;
two adjacent angle brackets is an error before c++11.
you should not use double as key
n shall be size_t instead of n (ok for gcc, but not for vs)
s**********k
发帖数: 88
3
主函数没有return

【在 l*********s 的大作中提到】
: missing std:: for the second map;
: two adjacent angle brackets is an error before c++11.
: you should not use double as key
: n shall be size_t instead of n (ok for gcc, but not for vs)

c********1
发帖数: 421
4
你是打算说:
n shall be size_t instead of int?

【在 l*********s 的大作中提到】
: missing std:: for the second map;
: two adjacent angle brackets is an error before c++11.
: you should not use double as key
: n shall be size_t instead of n (ok for gcc, but not for vs)

l*********s
发帖数: 5409
5
typo :-)

【在 c********1 的大作中提到】
: 你是打算说:
: n shall be size_t instead of int?

1 (共1页)
进入Programming版参与讨论
相关主题
一个小问题最近半年python 3的用户有没有大增长 ?
怎么搞的?一身汗。。。
问个double和long double的问题一个python得小问题
问个g++的问题<%@ 这么读对吗? Angle bracket percent at
C++如何实现graph?JetBrains自宫,大家可以给丫烧纸了,atom很牛的样子
How to detect cycle with minimum space加拿大和美国税收的一些区别 (转载)
define an adjacent matrix for a graph关于malloc/free和循环
[合集] 两道面试题double free or corruption问题
相关话题的讨论汇总
话题: map话题: double话题: int话题: 道题话题: size