How do you copy the contents of an array to a std::vector in C++ without looping?(如何在不循环的情况下将数组的内容复制到 C++ 中的 std::vector?)
问题描述
我有一个值数组,它从程序的不同部分传递给我的函数,我需要存储这些值以供以后处理.由于我不知道在处理数据之前我的函数会被调用多少次,我需要一个动态存储结构,所以我选择了一个std::vector
.我不想对 push_back
的所有值单独执行标准循环,如果我可以使用类似于 memcpy
的东西将其全部复制,那就太好了.
I have an array of values that is passed to my function from a different part of the program that I need to store for later processing. Since I don't know how many times my function will be called before it is time to process the data, I need a dynamic storage structure, so I chose a std::vector
. I don't want to have to do the standard loop to push_back
all the values individually, it would be nice if I could just copy it all using something similar to memcpy
.
推荐答案
如果你在得到数组和数组大小后可以构造向量,你可以说:
If you can construct the vector after you've gotten the array and array size, you can just say:
std::vector<ValueType> vec(a, a + n);
...假设 a
是您的数组,而 n
是它包含的元素数.否则,std::copy()
w/resize()
会起作用.
...assuming a
is your array and n
is the number of elements it contains. Otherwise, std::copy()
w/resize()
will do the trick.
我会远离 memcpy()
除非您可以确定这些值是普通数据 (POD) 类型.
I'd stay away from memcpy()
unless you can be sure that the values are plain-old data (POD) types.
另外,值得注意的是,这些都没有真正避免 for 循环——这只是你是否必须在代码中看到它的问题.O(n) 运行时性能对于复制值是不可避免的.
Also, worth noting that none of these really avoids the for loop--it's just a question of whether you have to see it in your code or not. O(n) runtime performance is unavoidable for copying the values.
最后,请注意,对于大多数 STL 算法来说,C 风格的数组是完全有效的容器——原始指针等价于 begin()
和 (ptr + n
) 等价于 end()
.
Finally, note that C-style arrays are perfectly valid containers for most STL algorithms--the raw pointer is equivalent to begin()
, and (ptr + n
) is equivalent to end()
.
这篇关于如何在不循环的情况下将数组的内容复制到 C++ 中的 std::vector?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在不循环的情况下将数组的内容复制到 C++ 中的 std::vector?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07