打印包含2d数组的结构

时间:2015-01-16 14:36:24

标签: c++ struct multidimensional-array

EDITED 我想要做的是(从文件中读取并将信息放入结构中定义的2d数组中,该部分有效)调用一个方法,查明数组中是否有任何零,如果是,则更改它并打印出来再次。我知道我错过了指针,但我不知道在哪里。提前致谢。

struct matrix{
const static int N=9;
int Ar[N][N];
};

void iprint(matrix s){ //my method to print the array
    for(int i = 0; i < 9; i++) {
        for(int j = 0; j < 9; j++) {
            cout << (s).Ar[i][j] << ' ';
        }
        cout << endl;
    }
}

bool annotation(matrix s, int row, int column, int num){
    if(s.Ar[row][column] == 0){
        (s).Ar[row][column] = num;
        return true;
    }
    else if(s.Ar[row][column] != 0){
        cout << "NO" << endl;
        return false;
    } else {
        cout << "No" << endl;
        return false;
    }
    iprint(s);
}

首先是数组:

0 0 6 5 0 0 1 0 0
4 0 0 0 0 2 0 0 9
0 0 0 0 3 0 0 0 8
0 7 0 1 0 0 5 0 0
0 8 0 0 0 0 0 6 0
0 0 3 0 9 0 0 4 0
2 0 0 0 4 0 0 0 0
9 0 0 7 0 0 0 0 3
0 0 5 0 0 8 2 0 0

我在这些方法之后得到的输出(调用方法annotation(s,1,1,2);

2686428 0 0 2686524 8989288 4733208 0 0 -17974607
1 0 4201360 4662484 0 8989288 8989340 9005760 0
.
.
.

我正在从文件中读取数组,方法是

bool readMatrix(matrix s){
ifstream f;
f.open("nuMatrix.txt");
if (f.is_open()) {
    while(!f.eof()){
    for(int i=0;i<9;i++){
        for(int j=0;j<9;j++){
            f>>(s).Ar[i][j];
            }
        }
    }
    f.close();
    iprint(s);
    return true;
}
else {
    cerr << "NO";
    return false;
}

}`

1 个答案:

答案 0 :(得分:0)

您传递给readMatrixannotation的矩阵未被功能修改。
您按值传递矩阵,因此您只需修改其副本。

更改您的功能以将参考带到matrix

bool annotation(matrix& s, int row, int column, int num)
bool readMatrix(matrix& s)