Inicializar un vector en C++ (7 formas diferentes)

Las siguientes son diferentes formas de construir o inicializar un vector en C++ STL

1. Inicializando empujando los valores uno por uno:

C++




// C++ program to create an empty> // vector and push values one> // by one.> #include> #include> using> namespace> std;> > int> main()> {> > // Create an empty vector> > vector <> int> >llevar> > > vect.push_back(10);> > vect.push_back(20);> > vect.push_back(30);> > > for> (> int> x : vect)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

10 20 30 

2. Especificar el tamaño e inicializar todos los valores:

C++




// C++ program to create an empty> // vector and push values one> // by one.> #include> #include> using> namespace> std;> > int> main()> {> > int> n = 3;> > > // Create a vector of size n with> > // all values as 10.> > vector <> int> >vector(n, 10);> > > for> (> int> x : vect)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

10 10 10 

3. Inicializando matrices similares:

C++




// C++ program to initialize> // a vector like an array.> #include> #include> using> namespace> std;> > int> main()> {> > vector <> int> >barra { 10, 20, 30 };> > > for> (> int> x : vect)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

10 20 30 

4. Inicializando desde una matriz:

C++




// C++ program to initialize> // a vector from an array.> #include> #include> using> namespace> std;> > int> main()> {> > int> arr[] = { 10, 20, 30 };> > int> n => sizeof> (arr) /> sizeof> (arr[0]);> > > vector <> int> >vect(arr, arreglar + n);> > > for> (> int> x : vect)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

10 20 30 

5. Inicializando desde otro vector:

C++




// C++ program to initialize a vector from> // another vector.> #include> #include> using> namespace> std;> > int> main()> {> > vector <> int> >vector1{ 10, 20, 30 };> > > vector <> int> >vect2(vect1.begin(), vect1.end());> > > for> (> int> x : vect2)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

10 20 30 

6. Inicializando todos los elementos con un valor particular:

C++




// C++ Program to initialize vector using fill()> #include> #include> using> namespace> std;> > int> main()> {> > // creating array with size 10> > vector <> int> >vector1(10);> > > // initializing using fill() function> > int> value = 5;> > fill(vect1.begin(), vect1.end(), value);> > > // printing vector> > for> (> int> x : vect1)> > cout < < x < <> ' '> ;> > > return> 0;> }>

Producción

5 5 5 5 5 5 5 5 5 5 

7 . Inicialice una matriz con números consecutivos usando std::iota :

C++




// C++ program to initialize a> // vector with consecutive> // numbers> #include> #include> #include> using> namespace> std;> > int> main()> {> > // declaring a vector with size 5> > vector <> int> >cosa(5);> > > // initializing using iota()> > iota(vec.begin(), vec.end(), 1);> > > // printing the vector> > for> (> int> i = 0; i <5; i++) {> > cout < < vec[i] < <> ' '> ;> > }> > return> 0;> }>

Producción

1 2 3 4 5 

Complejidad del tiempo: O(N), donde N es el tamaño del vector.

Espacio auxiliar: EN).