C++ では、float の列を含む 1 つのテキスト ファイルを読み取り、それらを 2 次元配列に配置したいと考えています。
最初の行は 1 列目などになります。
配列のサイズは不明です。異なる行と列に依存します。
「getline」、「inFile >>」で試してみましたが、行ったすべての変更に問題があります。
たとえば、値が存在した後に不要な行/行を削除する方法はありますか?
ファイルは次のようになります (+/-):
- 文字 "\t" 文字 "\t" 文字 "\n"
- float "\t" float "\t" float "\t" float "\n"
- float "\t" float "\t" float "\t" float "\n"
- float "\t" float "\t" float "\t" float "\n"
ありがとう
今まで私はこれを持っています:
int ReadFromFile(){
ifstream inFile;
ofstream outFile;
int nLinActual = 0;
const int nCol = 9;
const int nLin = 10;
// open file for reading
inFile.open("values.txt");
// checks if file opened
if(inFile.fail()) {
cout << "error loading .txt file reading" << endl;
return 1;
}
// open file for writing
outFile.open ("outArray.txt");
// checks if file opened
if(outFile.fail()) {
cout << "error loading .txt file for writing" << endl;
return 1;
}
// Doesn't read the first line
string dummyLine, dummyLine2, dummyLine3;
getline(inFile, dummyLine);
// Declares Array
float values[nLin][nCol];
//Fill Array with -1
for(int l=0; l<nLin; l++)
for(int c=0; c<nCol; c++)
values[l][c] = -1;
// reads file to end of *file*, not line
while(!inFile.eof()) {
for (int i=0; i<nCol; i++) {
inFile >> values[i][nLinActual];
}
i=0;
++nLinActual;
}
// Check what's happening
cout << endl;
for(int l=0; l<nLin; l++){
for(int c=0; c<nCol; c++){
cout << values[l][c] << "\t";
outFile << values[l][c] << "\t";
}
cout << endl;
outFile << endl;
}
inFile.close();
outFile.close();
return 0;
}