由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - What's the most efficient way to transform a 2d array into
相关主题
包含指针的类和vector的问题问一道HIVE题 关于Efficiency
用数组做参数,在函数内部如何知道数组的size?size不固定的struct怎么定义呀?
请问STL里有没有类似dot_product的算法size of structure
C++ copy elision和move的区别?ask a c question
help: matlab integral functiona simple question for C++ class
Remove elements from multiple vectors in C++关于malloc/free和循环
怎么efficiently实现next_combination?difference between: char** p and char*p[] ??
能帮我看看Ruby的这道题吗?sizeof()的问题
相关话题的讨论汇总
话题: myints话题: 2d话题: what话题: vector话题: transform
进入Programming版参与讨论
1 (共1页)
c*********n
发帖数: 128
1
Let's say I have
double a[N][M] = { .......};
How to transform a into a 2D vector
vector< vector > v
?
I know for 1d case, you can do the following:
int myints[] = {16,2,77,29};
vector fifth (myints, myints + sizeof(myints) / sizeof(int) );
But what about 2d?
1 (共1页)
进入Programming版参与讨论
相关主题
sizeof()的问题help: matlab integral function
C: struct 里面一个CHAR, 一个INT, 这个STRUCT 占多少字节?Remove elements from multiple vectors in C++
关于C++中一个Class的大小 (转载)怎么efficiently实现next_combination?
数组定义的时候,分配空间了么?能帮我看看Ruby的这道题吗?
包含指针的类和vector的问题问一道HIVE题 关于Efficiency
用数组做参数,在函数内部如何知道数组的size?size不固定的struct怎么定义呀?
请问STL里有没有类似dot_product的算法size of structure
C++ copy elision和move的区别?ask a c question
相关话题的讨论汇总
话题: myints话题: 2d话题: what话题: vector话题: transform