C++의 벡터에서 하위 벡터를 추출하는 방법
이 기사에서는 C++ 벡터에서 하위 벡터를 추출하는 방법에 대한 몇 가지 방법을 설명합니다.
{}
목록 초기화 표기법을 사용하여 벡터에서 하위 벡터 추출
하위 벡터를 추출하는 한 가지 방법은 원래 벡터 요소로 새 ‘벡터’를 초기화하는 것입니다. 다음 메소드는 반복기가 원하는 위치를 가리키는 요소를 지정합니다 (int_vec
의 처음 5 개 요소). 이 예제에서는std::copy
메서드를 사용하여 벡터 요소를 콘솔에 출력합니다.
#include <iomanip>
#include <iostream>
#include <iterator>
#include <vector>
using std::copy;
using std::cout;
using std::endl;
using std::setw;
using std::vector;
int main() {
vector<int> int_vec{1, 23, 43, 324, 10, 222, 424,
649, 1092, 110, 129, 40, 3024};
vector<int> sub_vec{int_vec.begin(), int_vec.begin() + 5};
cout << std::left << setw(10) << "vec: ";
copy(int_vec.begin(), int_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
cout << std::left << setw(10) << "subvec: ";
copy(sub_vec.begin(), sub_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
return EXIT_SUCCESS;
}
출력:
vec: 1; 23; 43; 324; 10; 222; 424; 649; 1092; 110; 129; 40; 3024;
subvec: 1; 23; 43; 324; 10;
또는 원래 벡터의 원하는 요소 (예 :&int_vec[index]
)에 대한 포인터를 지정하여 하위 벡터 변수를 초기화 할 수 있습니다.
#include <iomanip>
#include <iostream>
#include <iterator>
#include <vector>
using std::copy;
using std::cout;
using std::endl;
using std::setw;
using std::vector;
int main() {
vector<int> int_vec{1, 23, 43, 324, 10, 222, 424,
649, 1092, 110, 129, 40, 3024};
vector<int> sub_vec{&int_vec[0], &int_vec[5]};
cout << std::left << setw(10) << "vec: ";
copy(int_vec.begin(), int_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
cout << std::left << setw(10) << "subvec: ";
copy(sub_vec.begin(), sub_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
return EXIT_SUCCESS;
}
출력:
vec: 1; 23; 43; 324; 10; 222; 424; 649; 1092; 110; 129; 40; 3024;
subvec: 1; 23; 43; 324; 10;
copy()
함수를 사용하여 벡터에서 하위 벡터 추출
copy()
함수는 범위 기반 데이터를 조작하는 강력한 도구입니다. 이 경우, 우리는 특정 요소를 한벡터
에서 다른벡터
(서브 벡터로 의미 함)로 문학적 복사하는 데 활용합니다. 먼저 복사 할 요소가있는sub_vec
변수를 선언합니다. 다음으로 원래vector
범위를copy()
함수에 대한 인수로 전달하고begin
반복자를 대상vector
에 전달합니다.
#include <iomanip>
#include <iostream>
#include <iterator>
#include <vector>
using std::copy;
using std::cout;
using std::endl;
using std::setw;
using std::vector;
constexpr int NUM_ELEMS_TO_COPY = 6;
int main() {
vector<int> int_vec{1, 23, 43, 324, 10, 222, 424,
649, 1092, 110, 129, 40, 3024};
vector<int> sub_vec(NUM_ELEMS_TO_COPY);
copy(&int_vec[0], &int_vec[NUM_ELEMS_TO_COPY], sub_vec.begin());
cout << std::left << setw(10) << "subvec: ";
copy(sub_vec.begin(), sub_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
return EXIT_SUCCESS;
}
subvec: 1; 23; 43; 324; 10; 222;
copy()
메서드를 사용하는 또 다른 강력한 기술은 기존vector
변수에 하위 벡터를 추가하는 것입니다. 다음 샘플 코드는std::back_inserter
함수 템플릿을 사용하여 추출 된 5 개의 요소를sub_vec
변수로 다시 푸시하여이를 보여줍니다. copy
메소드는 요소 범위에서 [first, last)로 작동합니다.
#include <iomanip>
#include <iostream>
#include <iterator>
#include <vector>
using std::copy;
using std::cout;
using std::endl;
using std::setw;
using std::vector;
int main() {
vector<int> int_vec{1, 23, 43, 324, 10, 222, 424,
649, 1092, 110, 129, 40, 3024};
vector<int> sub_vec = {1, 2, 3, 4, 5, 6};
copy(&int_vec[0], &int_vec[5], std::back_inserter(sub_vec));
cout << std::left << setw(10) << "subvec: ";
copy(sub_vec.begin(), sub_vec.end(), std::ostream_iterator<int>(cout, "; "));
cout << endl;
return EXIT_SUCCESS;
}
subvec: 1; 2; 3; 4; 5; 6; 1; 23; 43; 324; 10;
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