问题描述
我有两个 STL 向量 A 和 B,我想清除 A 的所有元素并移动 的所有元素>B 到 A 然后清除 B.简单地说,我想这样做:
I have two STL vectors A and B and I'd like to clear all elements of A and move all elements of B to A and then clear out B. Simply put, I want to do this:
std::vector<MyClass> A;
std::vector<MyClass> B;
....
A = B;
B.clear();
由于 B 可能很长,所以需要 k*O(N) 来完成这个操作,其中 k 是一个常数,而 N 是 max(size_of(A), size_of(B)).我想知道是否有更有效的方法来做到这一点.我能想到的一件事是将A和B定义为指针,然后在恒定时间内复制指针并清除B.>
Since B could be pretty long, it takes k*O(N) to do this operation, where k is a constant, and N is max(size_of(A), size_of(B)). I was wondering if there could be a more efficient way to do so. One thing that I could think of is to define A and B as pointers and then copy pointers in constant time and clear out B.
推荐答案
使用 C++11,就这么简单:
Using C++11, it's as simple as:
A = std::move(B);
现在 A 包含以前由 B 持有的元素,而 B 现在是空的.这避免了复制:内部表示只是从 B 移动到 A,所以这是一个 O(1) 解决方案.
Now A contains the elements that were previously held by B, and B is now empty. This avoids copying: the internal representation is simply moved from B to A, so this is an O(1) solution.
至于 C++03,正如Prtorian 所说,您可以交换向量.std::swap 函数有一个特例,它以 std::vectors 作为参数.这有效地交换了内部表示,因此您最终避免创建它们持有的元素的副本.此函数也适用于 O(1) 复杂度.
As for C++03, as Prtorian states, you could swap the vectors. There is a specialization of the std::swap function, which takes std::vectors as its arguments. This effectively swaps the internal representation, so you end up avoiding creating copies of the elements held by them. This function works in O(1) complexity as well.
这篇关于STL 向量:移动向量的所有元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)