首页 > 编程语言 > 详细

C++容器嵌套实现动态二维数组(Vector2D)

时间:2018-01-01 18:43:54      阅读:329      评论:0      收藏:0      [点我收藏+]
转: http://blog.csdn.net/Touch_Dream/article/details/74931891

#include<stdio.h> #include <iostream> #include <vector> using namespace std; int main() { int row, column; cin >> row >> column; vector<vector<int> > a(row, vector<int>(column)); //row决定最里面层容器大小,vector<int>(column)决定外层容器的类型和大小 for (int j = 0; j < row; j++) for (int k = 0; k< column; k++) a[j][k] = rand() % 100; for (int j = 0; j < row; j++) { cout << endl; for (int k = 0; k< column; k++) { a[j][k] = rand() % 100; cout << a[j][k] << " "; } } while (1) { } return 0; }

方法二

利用vector的成员函数resize,来制定大小

#include<stdio.h>
#include <iostream>
#include <vector>

using namespace std;



int main()
{
    int row, column;
    cin >> row ;

    vector<vector<int> > a(row);//row决定最里面层容器大小,vector<int>(column)决定外层容器的类型和大小
    for (int k = 0; k < row; k++)
        a[k].resize(row);//row*row矩阵
    //使用空间
    for (int j = 0; j < row; j++)
        for (int k = 0; k< row; k++)
            a[j][k] = rand() % 100;

    for (int j = 0; j < row; j++)
    {
        cout << endl;
        for (int k = 0; k< row; k++)
        {
            a[j][k] = rand() % 100;
            cout << a[j][k] << "     ";
        }
    }
    while (1)
    {

    }
    return 0;
}

测试结果

技术分享图片

C++容器嵌套实现动态二维数组(Vector2D)

原文:https://www.cnblogs.com/byteHuang/p/8168106.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!