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?
基础教程推荐
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 提升 ASIO 流缓冲 2021-01-01
- c++ STL设置差异 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
