Search
 
SCRIPT & CODE EXAMPLE
 

CPP

how to make a 2d vector in c++

// Create a vector containing n 
//vectors of size m, all u=initialized with 0
vector<vector<int> > vec( n , vector<int> (m, 0));  
Comment

how to initialize 2d vector in c++

#include <iostream>
#include <vector>
#include <algorithm>
 
int main()
{
    std::vector<int> v = {2, 1, 3, 6, 7, 9, 8};
 
    int max = *max_element(v.begin(), v.end());
    int min = *min_element(v.begin(), v.end());
 
    std::cout << min << ", " << max << std::endl;        // 1, 9
 
    return 0;
}
Comment

2d vector c++ declaration

vector< vector<int>> a(rows, vector<int> (cols));
Comment

how to initialize 2d vector in c++

#include<vector>
#include<algorithm>

// all the  std and main syntax ofcourse.

vector<int> pack = {1,2,3} ;

// To add at the END
pack.push_back(6);       // {1,2,3,6}

//  OR
// To add at BEGGINING 
pack.insert(pack.begin(),6) 	// {6,1,2,3,}		
Comment

create a 2d vector in c++

// CPP program
#include <iostream>
#include <vector>
using namespace std;
int main()
{
    int n = 3;
    int m = 4;
 
    /*
    We create a 2D vector containing "n"
    elements each having the value "vector<int> (m, 0)".
    "vector<int> (m, 0)" means a vector having "m"
    elements each of value "0".
    Here these elements are vectors.
    */
    vector<vector<int>> vec( n , vector<int> (m, 0));
 
    for(int i = 0; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            cout << vec[i][j] << " ";
        }
        cout<< endl;
    }
     
    return 0;
}
Comment

how to initialize 2d vector in c++

#include<vector>
#include<algorithm>      //**********Have to include THIS...OTHERWISE

sort( vectorName.begin(),vectorName.end() ) ;
Comment

2D vector in cpp

// CPP program
#include <iostream>
#include <vector>
using namespace std;
int main()
{
    int n = 3;
    int m = 4;
  
    /*
    We create a 2D vector containing "n"
    elements each having the value "vector<int> (m, 0)".
    "vector<int> (m, 0)" means a vector having "m"
    elements each of value "0".
    Here these elements are vectors.
    */
    vector<vector<int>> vec( n , vector<int> (m, 0)); 
  
    for(int i = 0; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            cout << vec[i][j] << " ";
        }
        cout<< endl;
    }
      
    return 0;
}
Comment

2D vector in cpp

// CPP program
#include <iostream>
#include <vector>
using namespace std;
int main()
{
    int n = 3;
    int m = 4;
  
    /*
    We create a 2D vector containing "n"
    elements each having the value "vector<int> (m, 0)".
    "vector<int> (m, 0)" means a vector having "m"
    elements each of value "0".
    Here these elements are vectors.
    */
    vector<vector<int>> vec( n , vector<int> (m, 0)); 
  
    for(int i = 0; i < n; i++)
    {
        for(int j = 0; j < m; j++)
        {
            cout << vec[i][j] << " ";
        }
        cout<< endl;
    }
      
    return 0;
}
Comment

how to create 2d array using vector in c++

vector<vector<int>> vec(N, vector<int> (M, INT_MAX));

Explanation::
vector<vector<int>> -- will take the formed container
N -- Think like row of 2d Matrix
vector<int> (M, INT_MAX) -- In each row, there is again a vector associated with it, 
that will formed 2d array.
Comment

PREVIOUS NEXT
Code Example
Cpp :: time delay in c++ 
Cpp :: cpp merge two sets 
Cpp :: c++ user input 
Cpp :: c++ initialize array with all zeros 
Cpp :: c++ int to string 
Cpp :: sort function from bigest to smallest c++ 
Cpp :: capitalize first letter c++ 
Cpp :: apply pca to dataframe 
Cpp :: typedef vector c++ 
Cpp :: c++ infinite for loop 
Cpp :: return by reference in cpp 
Cpp :: unordered_map header file c++ 
Cpp :: gfgdf 
Cpp :: cpp case 
Cpp :: how to write something in power of a number in c++ 
Cpp :: c++ count number of element in vector 
Cpp :: c++ return multiple values 
Cpp :: how print fload wiht 3 decimal in c++ 
Cpp :: Write C++ program to sort an array in ascending order 
Cpp :: c++ random number between 0 and 1 
Cpp :: round up 2 digits float c++ 
Cpp :: c++ get char of string 
Cpp :: change int to string c++ 
Cpp :: how to create a vector in c++ 
Cpp :: std distance 
Cpp :: uses of gamma rays 
Cpp :: cudamemcpy 
Cpp :: print octal number in c++ 
Cpp :: how to reverse a string in c++ 
Cpp :: reverse function in cpp array 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =