简体   繁体   English

我可以使用std :: vector <std::vector<T> &gt;代表C ++中的二维数组?

[英]Can I use std::vector<std::vector<T>> to represent two dimensional arrays in C++?

I recently learned how to do two- and three-dimensional arrays in plain C using pointers, however being a C++ enthusiast, I'd also like to figure out how to do multi-dimensional arrays in C++. 我最近学习了如何使用指针在普通C语言中处理二维和三维数组,但是,作为一名C ++爱好者,我还想弄清楚如何在C ++中处理多维数组。

I know that the preferred way of doing one-dimensional arrays in C++ is to use std::vector<T> , but what about two- and three-dimensional arrays? 我知道在C ++中做一维数组的首选方法是使用std::vector<T> ,但是二维数组和三维数组呢? Would they be represented as std::vector<std::vector<T>> and std::vector<std::vector<std::vector<T>>> ? 它们将被表示为std::vector<std::vector<T>>std::vector<std::vector<std::vector<T>>>吗?

While you can technically do that, it is a better idea to use a single std::vector<T> and calculate the offsets by hand. 尽管可以从技术上做到这一点,但最好使用单个std::vector<T>并手动计算偏移量。 The resulting memory layout will be much more cache-friendly, since everything will be tightly packed together and can be traversed sequentially or indexed with no indirection. 最终的内存布局将对缓存更加友好,因为所有内容都将紧密地打包在一起,并且可以顺序遍历或无间接索引。

However, if C++11 is an option and the size of your array is fixed at compile-time, you should use nested std::array s. 但是,如果C ++ 11是一个选项,并且数组的大小在编译时是固定的,则应使用嵌套的std::array Dynamic allocation can be easily achieved with std::unique_ptr . 使用std::unique_ptr可以轻松实现动态分配。 Note however that the data won't necessarily be strictly contiguous between sub-arrays, which could be a problem when interfacing with API's expecting a single ol' block of data. 但是请注意,数据不一定在子数组之间严格相邻,这在与API期望单个ol'数据块接口时可能会出现问题。

Of course you may use class std::vector to simulate arrays. 当然,您可以使用类std :: vector来模拟数组。 For example 例如

#include <iostream>
#include <vector>

int main() 
{
    size_t n;
    size_t m;

    std::cout << "Enter the number of rows: ";
    std::cin >> n;

    std::cout << "Enter the number of columns: ";
    std::cin >> m;

    std::vector<std::vector<int>> v( n, std::vector<int>( m ) );

    return 0;
}

Also consider using of the combination of std::vector with std::array when the number of columns is a compile time constant. 当列数是编译时间常数时,也请考虑使用std :: vector与std :: array的组合。

A definition of so-called 3-dimensional array can look as for example 例如,所谓的3维数组的定义看起来像

std::vector<std::vector<std::vector<int>>> 
    v( 2, std::vector<std::vector<int>>( 3, std::vector<int>( 4 ) ) );

A more interesting example 一个更有趣的例子

#include <iostream>
#include <vector>
#include <numeric>

int main() 
{
    size_t n;
    size_t m;

    std::cout << "Enter the number of rows: ";
    std::cin >> n;

    std::cout << "Enter the number of columns: ";
    std::cin >> m;

    std::vector<std::vector<int>> v( n, std::vector<int>( m ) );

    for ( size_t i = 0; i < n; i++ )
    {
        std::iota( v[i].begin(), v[i].end(), i * m );
    }

    for ( const auto &v1 : v )
    {
        for ( auto x : v1 ) std::cout << x << ' ';
        std::cout << std::endl;
    }

    return 0;
}

If to enter 3 and 5 correspondingly for n and m then the output will be 如果分别为n和m输入3和5,则输出为

0 1 2 3 4 
5 6 7 8 9 
10 11 12 13 14 

Sure! 当然!

#include <vector>
#include <iostream>

int main()
{
    typedef std::vector<double> VD;
    typedef std::vector<VD>    VVD;

    // 10x5 matrix filled with ones
    VVD mtx(10, VD(5, 1));

    std::cout << mtx.size() << " " << mtx[0].size() << std::endl;
    std::cout << mtx[3][2] << std::endl;


    return 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM