STL 向量:移动向量的所有元素

2024-05-12C/C++开发问题
5

本文介绍了STL 向量:移动向量的所有元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有两个 STL 向量 AB,我想清除 A 的所有元素并移动 的所有元素>BA 然后清除 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 是一个常数,而 Nmax(size_of(A), size_of(B)).我想知道是否有更有效的方法来做到这一点.我能想到的一件事是将AB定义为指针,然后在恒定时间内复制指针并清除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 向量:移动向量的所有元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&amp;()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6