使用循环将值从 C++ 中的一维数组添加到二维数组中
Posted
技术标签:
【中文标题】使用循环将值从 C++ 中的一维数组添加到二维数组中【英文标题】:add values into a 2D array from an 1D array in C++ using loops 【发布时间】:2017-08-08 16:57:33 【问题描述】:我有一个一维数组和一个包含一些值的二维数组。我想使用循环将一维数组的值添加到二维数组中。
到目前为止,我有以下代码:
#include <iostream>
#include <conio.h> //for _kbhit
using namespace std;
#define MAX_N 100
int c[MAX_N] = 21, 12, 23, 34, 15, 16;
int b[MAX_N][MAX_N] =
10 , 11 , 20 ,
22 , 30 , 33 ,
40 , 44 , 50 ,
55 , 60 , 66
;
int main()
int i,j,k,l;
int idx = 0;
for( i=0 ; i<2 ; i++ )
for( j=0 ; j<3 ; j++ )
b[i][j] = c[idx++];
for ( k = 0 ; k < 2 ; k++)
for (l = 0 ; l < 3 ; l++)
cout << b[k][l] << " " ;
cout << endl;
cout << "\n\nHit<enter> to finish";
while ( !_kbhit());
return (0);
它没有按我的意愿工作。设计的输出是:
10 11 20
22 30 33
40 44 50
55 60 66
21 12 23
34 15 16
有什么帮助吗? 谢谢!
【问题讨论】:
它不起作用,因为这里for( i=0 ; i<2 ; i++ )
你覆盖(而不是添加)二维数组中的东西,然后你打印二维数组的前 2 行 for ( k = 0 ; k < 2 ; k++)
你在 c++ 开始使用std::vector
或std::array
。
【参考方案1】:
如前所述,您的初始 for 循环会覆盖您的表。还有更多代码需要真正添加,但总的来说,请查看下面的代码,看看它是否有帮助:
int nextRow = 4;
int itemsToAdd = 6;
int rowsToAdd = itemsToAdd/3;
int additional = itemsToAdd%3; // just added as hint for incomplete rows
int totalRows = nextRow + rowsToAdd;
int idx = 0;
for( i=nextRow; i<totalRows ; i++ )
for( j=0 ; j<3 ; j++ )
b[i][j] = c[idx++];
最后,您需要更新输出循环以使用 totalRows 变量。
【讨论】:
以上是关于使用循环将值从 C++ 中的一维数组添加到二维数组中的主要内容,如果未能解决你的问题,请参考以下文章