0

我有一个文件

0 3 2

1 2 3

4 5 6

6 8 1

其中每行的第一个数字是行,第二个数字是列,第三个数字是该行、列中包含的数据。这将是一个给定的 [8][8] 数组,所以我已经将所有内容初始化为 0,但是如何存储这些数据值中的每一个?例如,我想要 [0][3] =2 和 [1][2] = 3。我想跟踪找到该行、列和数据值的行。那么,我怎样才能正确地将这些值插入到我的二维数组中呢?

int rowcol[8][8];
    for (int i=0; i < 9; i++)
        for (int j=0; j < 9; j++)
        {
            rowcol[i][j] =0;
        }

 ifstream myfile;
int nums;
myfile.open(text.c_str());
while (!myfile.eof()) {
    myfile >> nums;
    numbers.push_back(nums);
}
for (int i=0; i < numbers.size(); i++)
{

   //Not sure what the best approach here would be and I'm not even sure if I should have done a vector...

}
4

4 回答 4

2

为什么要读入数字向量,为什么在读取每一行时不直接写入rowcol?

// Check myfile and not only myfile.eof()
int row, column, value;
while(myfile >> row >> column >> value) {
    rowcol[row][column] = value;
}

此代码不会检查一行中是否只有 3 个数字,具体取决于您可能需要为此添加检查的要求。

于 2013-10-30T15:48:54.233 回答
0

只需读取行、col val 并更新 thw rowcol:

int rowcol[8][8];

for (int i=0; i < 9; i++)
    for (int j=0; j < 9; j++)
    {
        rowcol[i][j] =0;
    }

myfile.open(text.c_str());

while (!myfile.eof()) {
    int row, col, val;
    myfile >> row >> col >> val;
    rowcol[row][col] = val;
}

更好的解决方案可以是一个表示行数的数字:

// file struct
2
0 0 1
0 1 2

template< typename T >
inline T read( std::istream& is )
{
    T res;
    is >> res;
    return res;
}     

int rowcol[8][8];

for (int i=0; i < 9; i++)
    for (int j=0; j < 9; j++)
    {
        rowcol[i][j] =0;
    }

myfile.open(text.c_str());

const size_t COUNT = read<int>( myfile );

for ( int i = 0; i < COUNT; ++i )

    int row = read<int>( myfile );
    int col = read<int>( myfile );
    int val = read<int>( myfile );

    rowcol[row][col] = val;
}
于 2013-10-30T15:50:56.547 回答
0

您的代码无效。如果您定义了一个一维大小等于 8 的数组,那么在循环中您应该使用条件 i < 8 而不是 i < 9 就像您写的那样

int rowcol[8][8];
    for (int i=0; i < 9; i++)
        for (int j=0; j < 9; j++)
        {
            rowcol[i][j] =0;
        }

此外,可以在定义数组时完成此类初始化

int rowcol[8][8] = {};

至于从文件中读取记录的代码,那么您应该检查每一行是否恰好包含三个数字,并且前两个数字具有可接受的数组索引值。

于 2013-10-30T16:02:10.950 回答
0

你可以使用向量

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

using namespace std;


vector<int> split(string line,char delm)
{
    vector<int> tokens;
    string num="";
    for(int i=0;i<line.length();i++)
    {
        char c = line[i];
        if(c == delm)
        {
            tokens.push_back(atoi(num.c_str()));
            num="";
        }else
        {
            num+=c;
        }
    }
    return tokens;
}

string text="file.txt";


int main()
{
    string line = "";
    ifstream infile;

    infile.open(text.c_str());
    vector<vector<int>> mydata;

    while (!infile.eof())
    {
        getline(infile, line);
        mydata.push_back(split(line,' '));
    }
    infile.close();

    system("pause");
    return 0;
}

如果要将其转换为数组

int rowcol[8][8];
    for (int i=0; i < mydata.size(); i++)
    {
        vector<int> d = mydata[i];
        for (int j=0; j < d.size(); j++)
        {
            rowcol[i][j] =d[j];
        }
    }
于 2013-10-30T16:50:46.873 回答