在 C++ 中比較陣列

Jinku Hu 2023年10月12日
  1. 在 C++ 中使用 for 迴圈語句比較陣列
  2. 在 C++ 中使用自定義定義的函式比較陣列
  3. 在 C++ 中使用 std::equal 演算法來比較陣列
在 C++ 中比較陣列

本文將演示如何在 C++ 中比較陣列的多種方法。

在 C++ 中使用 for 迴圈語句比較陣列

在這些例子中,我們將使用一個變數陣列容器-std::vector。這個類有一個內建的操作符 ==,我們可以用它來比較兩個給定向量的內容。在這種情況下,我們不需要擔心不同的向量長度,因為它們由該方法內部處理。返回值是帶有 true 的布林值,意味著兩個向量相等。

注意,我們用 ? :條件語句來評估表示式,並將相應的字串資訊列印到控制檯。

#include <iostream>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::vector;

int main() {
  vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
  vector<int> i_vec2 = {12, 32, 43, 53, 23, 25};
  vector<int> i_vec3 = {12, 32, 43, 53, 23, 65};

  i_vec1 == i_vec2
      ? cout << "Vectors i_vec1 and i_vec2 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec2 are not the same" << endl;

  i_vec1 == i_vec3
      ? cout << "Vectors i_vec1 and i_vec3 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;

  return EXIT_SUCCESS;
}

輸出:

Vectors i_vec1 and i_vec2 are not the same
Vectors i_vec1 and i_vec3 are the same

在 C++ 中使用自定義定義的函式比較陣列

前面的方法可以在使用者的模板函式中進行泛化,如果需要,可以新增自定義的返回程式碼和異常處理。在這個例子中,我們實現了 compareVectorContents 函式,該函式接受兩個 vector 引用,並使用 if 結構評估相等條件。

#include <iostream>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::vector;

template <typename T>
bool compareVectorContents(vector<T> &vec1, vector<T> &vec2) {
  if (vec1 == vec2) {
    return true;
  } else {
    return false;
  }
}

int main() {
  vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
  vector<int> i_vec3 = {12, 32, 43, 53, 23, 65};
  vector<int> i_vec4 = {12, 32, 43};

  compareVectorContents(i_vec1, i_vec3)
      ? cout << "Vectors i_vec1 and i_vec3 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;

  compareVectorContents(i_vec1, i_vec4)
      ? cout << "Vectors i_vec1 and i_vec4 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec4 are not the same" << endl;

  return EXIT_SUCCESS;
}
Vectors i_vec1 and i_vec3 are the same
Vectors i_vec1 and i_vec4 are not the same

在 C++ 中使用 std::equal 演算法來比較陣列

另一種比較兩個向量內容的方法是 C++ 標準庫中的 std::equal 演算法,定義在 <algorithm> 標頭檔案中。equal 方法需要 4 個引數代表兩個需要比較的獨立範圍,因此提供了一個更通用的介面來處理比較。這個方法可以用於無序容器的迭代器形成的範圍,即-std::unordered_setstd::unordered_map 等。equal 返回值是布林值,如果兩個範圍內的元素相同,則返回 true。同時,如果傳遞的範圍長度不同,函式將返回 false

#include <algorithm>
#include <iostream>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::equal;
using std::string;
using std::vector;

int main() {
  vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
  vector<int> i_vec2 = {12, 32, 43, 53, 23, 65};
  vector<int> i_vec3 = {12, 32, 43};

  equal(i_vec1.begin(), i_vec1.end(), i_vec2.begin(), i_vec2.end())
      ? cout << "Vectors i_vec1 and i_vec2 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec2 are not the same" << endl;
  equal(i_vec1.begin(), i_vec1.end(), i_vec3.begin(), i_vec3.end())
      ? cout << "Vectors i_vec1 and i_vec3 are the same" << endl
      : cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;

  return EXIT_SUCCESS;
}

輸出:

Vectors i_vec1 and i_vec2 are the same
Vectors i_vec1 and i_vec3 are not the same
作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 創辦人。Jinku 在機器人和汽車行業工作了8多年。他在自動測試、遠端測試及從耐久性測試中創建報告時磨練了自己的程式設計技能。他擁有電氣/ 電子工程背景,但他也擴展了自己的興趣到嵌入式電子、嵌入式程式設計以及前端和後端程式設計。

LinkedIn Facebook

相關文章 - C++ Array