C++ STL에서 벡터 배열 선언

Jinku Hu 2023년10월12일
  1. C 스타일 배열 표기법을 사용하여 C++에서 벡터 배열 선언
  2. std::vector를 사용하여 C++에서 벡터 배열 선언
C++ STL에서 벡터 배열 선언

이 기사에서는 C++에서 벡터 배열을 선언하는 방법에 대한 여러 방법을 보여줍니다.

C 스타일 배열 표기법을 사용하여 C++에서 벡터 배열 선언

고정 된 벡터 배열은 C 스타일 배열 대괄호 표기법-[]로 선언 할 수 있습니다. 이 방법은 기본적으로 고정 된 수의 행과 가변적 인 수의 열로 2 차원 배열을 정의합니다. 열은push_back함수 호출과 필요한 경우arr[x][y]표기법으로 액세스되는 요소로 추가 할 수 있습니다. 다음 예에서는 배열의 각 열에 임의의 정수 값 10 개를 푸시하여 10x10 행렬이 생성됩니다.

#include <iomanip>
#include <iostream>
#include <vector>

using std::array;
using std::cout;
using std::endl;
using std::setw;
using std::vector;

int main() {
  vector<int> arr_vectors[10];

  for (auto &vec : arr_vectors) {
    for (int i = 0; i < 10; ++i) {
      vec.push_back(rand() % 100);
    }
  }

  for (auto &item : arr_vectors) {
    for (auto &i : item) {
      cout << setw(3) << i << "; ";
    }
    cout << endl;
  }

  return EXIT_SUCCESS;
}

출력:

83;  86;  77;  15;  93;  35;  86;  92;  49;  21;
62;  27;  90;  59;  63;  26;  40;  26;  72;  36;
11;  68;  67;  29;  82;  30;  62;  23;  67;  35;
29;   2;  22;  58;  69;  67;  93;  56;  11;  42;
29;  73;  21;  19;  84;  37;  98;  24;  15;  70;
13;  26;  91;  80;  56;  73;  62;  70;  96;  81;
 5;  25;  84;  27;  36;   5;  46;  29;  13;  57;
24;  95;  82;  45;  14;  67;  34;  64;  43;  50;
87;   8;  76;  78;  88;  84;   3;  51;  54;  99;
32;  60;  76;  68;  39;  12;  26;  86;  94;  39;

std::vector를 사용하여 C++에서 벡터 배열 선언

또는std::vector컨테이너를 사용하여 벡터의 가변 배열을 선언 할 수 있습니다. 다음 코드 조각은 4x4 정수 행렬의 선언 및 초기화를 보여줍니다. 생성자의 두 번째 인수는 요소를 0으로 초기화하는 또 다른vector생성자입니다. 객체의 요소는 동일한arr[x][y]표기법을 사용하여 액세스 할 수 있습니다. 장점으로는std::vector컨테이너의 내장 함수를 사용하여 행과 열을 동적으로 확장 할 수 있습니다.

#include <iomanip>
#include <iostream>
#include <vector>

using std::array;
using std::cout;
using std::endl;
using std::setw;
using std::vector;

constexpr int LENGTH = 4;
constexpr int WIDTH = 4;

int main() {
  vector<vector<int>> vector_2d(LENGTH, vector<int>(WIDTH, 0));

  vector_2d[2][2] = 12;
  cout << vector_2d[2][2] << endl;

  vector_2d.at(3).at(3) = 99;
  cout << vector_2d[3][3] << endl;

  cout << endl;

  return EXIT_SUCCESS;
}

출력:

12
99

벡터 벡터를 통한 반복은 2 단계 중첩range기반 루프를 사용하여 수행 할 수 있습니다. 액세스 요소 별칭 이름은 내부for루프의 벡터 요소입니다.

#include <iomanip>
#include <iostream>
#include <vector>

using std::array;
using std::cout;
using std::endl;
using std::setw;
using std::vector;

constexpr int LENGTH = 4;
constexpr int WIDTH = 4;

int main() {
  vector<vector<int>> vector_2d(LENGTH, vector<int>(WIDTH, 0));

  std::srand(std::time(nullptr));
  for (auto &item : vector_2d) {
    for (auto &i : item) {
      i = rand() % 100;
      cout << setw(2) << i << "; ";
    }
    cout << endl;
  }
  cout << endl;

  for (auto &item : vector_2d) {
    for (auto &i : item) {
      i *= 3;
    }
  }

  for (auto &item : vector_2d) {
    for (auto &i : item) {
      cout << setw(3) << i << "; ";
    }
    cout << endl;
  }

  return EXIT_SUCCESS;
}

출력:

62; 85; 69; 73;
22; 55; 79; 89;
26; 89; 44; 66;
32; 40; 64; 32;

186; 255; 207; 219;
 66; 165; 237; 267;
 78; 267; 132; 198;
 96; 120; 192;  96;
작가: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook

관련 문장 - C++ Array