logo

Initialiser en vektor i C++ (7 forskjellige måter)

Følgende er forskjellige måter å konstruere eller initialisere en vektor i C++ STL

1. Initialiser ved å trykke verdier én etter én:



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>>bære> > >vect.push_back(10);> >vect.push_back(20);> >vect.push_back(30);> > >for> (>int> x : vect)> >cout << x <<>' '>;> > >return> 0;> }>



>

>

Produksjon

10 20 30>

2. Spesifisere størrelse og initialisere alle verdier:

C++




jquery ved klikk
// 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>>vect(n, 10);> > >for> (>int> x : vect)> >cout << x <<>' '>;> > >return> 0;> }>

>

>

Produksjon

10 10 10>

3. Initialisere like arrays:

C++




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

>

skriv json til filen python

>

Produksjon

10 20 30>

4. Initialisere fra en matrise:

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, arr + n);> > >for> (>int> x : vect)> >cout << x <<>' '>;> > >return> 0;> }>

>

>

Produksjon

nettsted som coomeet
10 20 30>

5. Initialisering fra en annen vektor:

C++




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

>

>

Produksjon

10 20 30>

6. Initialisere alle elementer med en bestemt verdi:

C++




java forbedret loop

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

>

>

Produksjon

5 5 5 5 5 5 5 5 5 5>

7 . Initialiser en matrise med fortløpende tall ved å bruke 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>>ting(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;> }>

>

>

Produksjon

1 2 3 4 5>

Tidskompleksitet: O(N), hvor N er størrelsen på vektoren.

Ekstra plass: PÅ).