Estrai un sottovettore da un vettore in C++

Jinku Hu 12 ottobre 2023
  1. Usa {} Notazione di inizializzazione lista per estrarre un sottovettore da un vettore
  2. Usa la funzione copy() per estrarre un sottovettore da un vettore
Estrai un sottovettore da un vettore in C++

Questo articolo spiegherà diversi metodi su come estrarre un sottovettore da un vettore C++.

Usa {} Notazione di inizializzazione lista per estrarre un sottovettore da un vettore

Un modo per estrarre un sottovettore è inizializzare un nuovo vettore con gli elementi del vettore originale. Il metodo seguente specifica gli elementi con iteratori che puntano alle posizioni desiderate (i primi 5 elementi da int_vec). Notate che, in questo esempio, usiamo il metodo std::copy per inviare elementi vettoriali alla console.

#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;
}

Produzione:

vec:      1; 23; 43; 324; 10; 222; 424; 649; 1092; 110; 129; 40; 3024;
subvec:   1; 23; 43; 324; 10;

In alternativa, puoi inizializzare una variabile subvector specificando i puntatori all’elemento desiderato (ad esempio &int_vec[index]) del vettore originale:

#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;
}

Produzione:

vec:      1; 23; 43; 324; 10; 222; 424; 649; 1092; 110; 129; 40; 3024;
subvec:   1; 23; 43; 324; 10;

Usa la funzione copy() per estrarre un sottovettore da un vettore

La funzione copy() è un potente strumento per manipolare i dati basati su intervalli. In questo caso, lo utilizzeremo per copiare letteralmente un elemento specifico da un vettore a un altro (inteso come sottovettore). Per prima cosa dichiariamo una variabile sub_vec con alcuni elementi da copiare. Successivamente, passiamo l’intervallo vector originale come argomento alla funzione copy() e l’iteratore begin al vettore di destinazione.

#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;

Un’altra potente tecnica che usa il metodo copy() è quella di aggiungere un sottovettore a qualsiasi variabile vector esistente. Il seguente codice di esempio lo dimostra spingendo 5 elementi estratti indietro alla variabile sub_vec usando il modello di funzione std::back_inserter. Notare che, il metodo copy() opera sull’intervallo di elementi come [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;
Autore: 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

Articolo correlato - C++ Vector