gpt4 book ai didi

c++ - 从文件中读取二维数组并将其传递给另一个函数

转载 作者:行者123 更新时间:2023-11-30 03:15:41 24 4
gpt4 key购买 nike

我用 C++ 编写了这段代码,用于从文件中读取二维数组。现在我想用函数更好地组织我的代码。我遇到的问题是我无法弄清楚如何将我加载到内存中的二维数组传递给同一程序中的另一个函数。这是我需要组织成函数的代码:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

#define M 4
#define N 4

int main(){
int i, j;
float A[M][N];
string line;
ifstream matrix("matrix.txt");
if (matrix.is_open())
{
do
{
for(i=0; i<M; i++)
{
for(j=0; j<N; j++)
matrix >> A[i][j];
}
}
while (getline(matrix,line));
matrix.close();
}
else cout << "Unable to open file";

float sumline[M]={0};

for(i=0;i<M;i++)
{
for(j=0;j<N;j++)
sumline[i]+=A[i][j];
}

float sumcolumn[N]={0};

for(j=0;j<N;j++)
{
for(i=0;i<M;i++)
sumcolumn[j]+=A[i][j];
}


for (i=0; i<M; i++){
for (j=0; j<N; j++){
if(sumline[i]<sumcolumn[j]){
cout << "Error, total sum of column "<<j<<" is greater than the sum of the line"<<i<<endl;
return 0;
}
}
}

int mincol=sumcolumn[0];

for (i=0; i<N; i++){
if(mincol>sumcolumn[i])
mincol==sumcolumn[i];
}
float avgline = 0.0;
for (i=0; i<M; i++){
avgline=avgline+sumline[i];
}
avgline = avgline/M;

if (avgline * 3 > mincol) {
cout << "Conditions verified"<<endl;
}
else{
cout << "Error, triple of the avg of line is less than the lowest sum of column"<<endl;
return 0;
}

return 0;
}

代码基本上对二维数组进行了一些数学运算。我也想保持尽可能简单,所以即使 using namespace std; 这不是很好的做法,或者我从文件中读取数组的方式非常基本,我需要它像那样。非常感谢。

最佳答案

而不是使用 c 数组

float A[M][N];

您可以改为使用

using MyArrayType = std::array<std::array<float>, M>, N>;
MyArrayType A;

现在您可以通过引用传递(MyArrayType&const MyArrayType& )

也就是说:可以使用更难的语法传递 c 数组:(float (&a)[M][N]); - 强烈建议使用 std::array 尽可能代替。

关于c++ - 从文件中读取二维数组并将其传递给另一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56847930/

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