gpt4 book ai didi

c++ - 将数组推回矩阵 C++

转载 作者:太空狗 更新时间:2023-10-29 22:59:18 25 4
gpt4 key购买 nike

我需要在矩阵或行增长 vector 中插入一个包含 10 个元素的数组。我要做的是将数组作为大小为 n x 10 的矩阵的一行输入.对于矩阵推送,每个数组应该增长 1 行。对于迭代矩阵的每一步将是:

[ 1 ] [ 10 ].. [ 2 ] [ 10 ] .. [ 3 ] [ 10 ]

我正在使用 std::array<int 10>用于数组的构建。

最佳答案

您可以使用以下容器 std::vector<std::array<int, 10>>

这是一个演示程序

#include <iostream>
#include <iomanip>
#include <array>
#include <vector>

int main()
{
const size_t N = 10;
std::vector<std::array<int, N>> matrix;

matrix.push_back( { { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } } );

for ( const auto &row : matrix )
{
for ( int x : row ) std::cout << std::setw( 2 ) << x << ' ';
std::cout << std::endl;
}

std::cout << std::endl;

std::array<int, N> a = { { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 } };
matrix.push_back( a );

for ( const auto &row : matrix )
{
for ( int x : row ) std::cout << std::setw( 2 ) << x << ' ';
std::cout << std::endl;
}
}

程序输出为

 0  1  2  3  4  5  6  7  8  9 

0 1 2 3 4 5 6 7 8 9
10 11 12 13 14 15 16 17 18 19

关于c++ - 将数组推回矩阵 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37271561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com