在本教程中,我们将讨论一个程序,以了解如何在C ++中快速交换两个相同大小的数组。
为此,我们将使用一种称为std::swap()的快速方法来交换两个给定数组的元素。
#include <iostream> #include <utility> using namespace std; int main (){ int a[] = {1, 2, 3, 4}; int b[] = {5, 6, 7, 8}; int n = sizeof(a)/sizeof(a[0]); swap(a, b); cout << "a[] = "; for (int i=0; i<n; i++) cout << a[i] << ", "; cout << "\nb[] = "; for (int i=0; i<n; i++) cout << b[i] << ", "; return 0; }
输出结果
a[] = 5, 6, 7, 8, b[] = 1, 2, 3, 4,