[問題] 將檔案輸入到Vector的二維陣列中

作者: jayzhuang (Jay)   2019-09-26 20:40:58
開發平台(Platform): (Ex: Win10, Linux, ...)
Win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
vs2019
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
各位大大好,感謝各位大大給予我的幫助,讓我知道有關於陣列與vector的使用
現在有個狀況:
我有一文字檔案,內容都是四個一組的資料(如果加上空行算五個一組),如:
[0][0]~[0][3]
[1][0]~[1][3]
[2][0]~[2][3]
我要讓資料具有二維陣列的顯示,但一直都只有[0][0]~[0][n]這樣......
餵入的資料(Input):
https://imgur.com/tiFUOts
預期的正確結果(Expected Output):
這邊是我自己用書寫需要的正確結果:
https://imgur.com/mPT1Bcc
錯誤結果(Wrong Output):
他打印出來資料排序是一樣,但是陣列內容卻是錯誤:
直接顯示:
https://imgur.com/sRSdMbj
陣列對照:
cout << data_array02[0][0] << endl;
cout << data_array02[0][1] << endl;
cout << data_array02[0][2] << endl;
cout << data_array02[0][3] << endl;
cout << data_array02[0][4] << endl;
cout << data_array02[0][5] << endl;
cout << data_array02[0][6] << endl;
cout << data_array02[0][7] << endl;
cout << data_array02[0][8] << endl;
cout << data_array02[0][9] << endl;
cout << data_array02[0][10] << endl;
cout << data_array02[0][11] << endl;
cout << data_array02[0][12] << endl;
cout << data_array02[0][13] << endl;
cout << data_array02[0][14] << endl;
他都只有[0][0]~[0][n]這樣.....
因為我需要的是五個一組的,就像上圖預期的畫面:
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
vector<vector<string> > data_array02;
ifstream Read_PwdRevisTxt; //要讀取的修改檔-PwdRevis
Read_PwdRevisTxt.open("LGPOword.txt");
string data_em; //不要放入陣列的前三行
string data_line; //把輸入一行資料就放入這
string Read_PwdRevisTxt_name = "LGPOword.txt";
//設定假如讀取不到檔案
if (!Read_PwdRevisTxt)
{
std::cerr << "File " << Read_PwdRevisTxt_name << " could not be opened" << std::endl;
return false;
}
//設定前面三行不要讀取的方式
for (int i = 0; i < 4; i++)
{
//把前面3行寫入到裡面 data_em
getline(Read_PwdRevisTxt, data_em);
}
vector<string> data_array01;
//將資料都放入到vcetor陣列中
while (!Read_PwdRevisTxt.eof())
{
getline(Read_PwdRevisTxt, data_line);
data_array01.push_back(data_line);
}
data_array02.push_back(data_array01);
//直接顯示
for (int x = 0; x < data_array02.size(); x++)
{
for (int y = 0; y < data_array02[x].size(); y++)
{
cout<< data_array02[x][y] <<endl;
}
}
//分析直接顯示的每一行對應的陣列是什麼:
cout << data_array02[0][0] << endl;
cout << data_array02[0][1] << endl;
cout << data_array02[0][2] << endl;
cout << data_array02[0][3] << endl;
cout << data_array02[0][4] << endl;
cout << data_array02[0][5] << endl;
cout << data_array02[0][6] << endl;
cout << data_array02[0][7] << endl;
cout << data_array02[0][8] << endl;
cout << data_array02[0][9] << endl;
cout << data_array02[0][10] << endl;
cout << data_array02[0][11] << endl;
cout << data_array02[0][12] << endl;
cout << data_array02[0][13] << endl;
cout << data_array02[0][14] << endl;
補充說明(Supplement):
(底下那三行無關的,我之後會再加入預先修改文字檔案的功能。)
最重要的是在於,如何讓輸入五行之後(4行+一個空白行),
之後換下一個陣列?
之前因為用了array陣列的方式可行,但是因為無法估計有多少組的設定值會進來
(將近300多項,每一項都是4個一組的設定值)
改用vector有達到這效果,但需要一定的格式來區分(之後需要用的方式)
固定後面數字為0~3
前面則是0~n這樣的:
比如
https://imgur.com/pLSEjMk
希望有大神幫我看看我觀念哪裡錯誤哩? 或是vector的寫入方式錯誤了?
作者: idiont (supertroller)   2019-09-26 20:53:00
因為你把資料全部都塞到data_array01之後才把他丟到data_array02,你應該讀一組資料放到data_array01就丟到data_array02,然後重置data_array01,循環直到檔案結束
作者: joechen1008 (:))   2019-09-27 10:48:00
腦袋是個很好的東西,不自己思考只想當伸手牌?承認自己是伸手牌也不簡單XD 有腦袋就不會別人都指引你方向還問他怎麼修改 有腦袋就不會上來發文討拍討救兵了XD
作者: eye5002003 (下一夜)   2019-09-27 15:20:00
上來發問就是為了得到收穫,對你沒有幫助的回文無視就是了,罵回去不會有任何收穫的,甚至會有損失
作者: DLHZ ( )   2019-09-27 16:18:00
想伸手沒怎樣 講話沒邏輯應該是比較丟臉
作者: loveme00835 (髮箍)   2019-09-27 16:24:00
xD 作業板什麼人都有
作者: ctrlbreak   2019-09-27 18:03:00
類似配置檔的東西已經寫了幾個月了, 好奇是職業的還是正在學習 XD

Links booklink

Contact Us: admin [ a t ] ucptt.com