Re: [問題] 如何讀取txt檔內特定資料
※ 引述《ouynln (示山)》之銘言:
: *[36m開發平台(Platform): Win 10
: 編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
: VC++
: 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
: 問題(Question): 如何將txt檔內的矩陣資料讀取出來,因為txt檔內的資
: 料不只有數字,還有其他英文夾雜,而檔案內有兩筆矩陣資料,需要分別儲存,之後
: 要做運算。
: 餵入的資料(Input): txt檔內容:
: Matrix_Multiplication
: Name : A1
: 1 2 3 ;
: 4 5 6 ;
: 7 5 9 ;
: Name : B1
: 2 2 3 ;
: 4 5 5 ;
: 8 8 7 ;
: End_Matrix_Multiplication
: 預期的正確結果(Expected Output):
: 錯誤結果(Wrong Output):
: 程式碼(Code):(請善用置底文網頁, 記得排版)
: 補充說明(Supplement): 我的想法是用getline()去做,遇到A1則下面
: 的數字開始做儲存,同理,遇到B2也是一樣。但從一開始就不知如何讀取矩陣,
: 希望版上高手可以指導一下小弟這個初學者。(用C++寫的)
用 two pass 的方式處理
1.
ifstream(file_name, ios_base::binary);
vector<string> lines;
string s;
while(getline(ifs, s))
lines.push_back(s);
2.
for(size_t i = 0; i < lines.size(); ++i)
{
//...
}
你的問題應該是卡在這,但已經存入 vector 來回導航就比較容易了,
按照你的描述,陣列都是位於:
Name: Ax
//...
Name: Bx
或
Name: Bx
//...
End_Matrix
如果你要判斷 Name: [A-Z][0-9],說實在用 Regex 比較簡單,
而且好像應該改用 Python 才對?如果你不用 Regex(我個人比較
常用 PCRE),我知道的方法就是直接去拆解字串了
我想重點應該是在 matrix,把字串轉成數值有幾個好用的 C API:
strtol,strtoul,strtod
strtol(const char* str, char** endptr, int base);
strtol 會拋棄碰到的空白字元,直到碰到第一個數字,轉換
成 long 回傳,重點在於 endptr,他會指向數值字串後的字元
123 456
^
所以你只要寫個很簡單演算法就可以把字串轉成陣列中的某一 row
char *ptr = lines[i];
do{
long tmp = strtol(ptr, &ptr, 10);
matrix[i].push_back(tmp);
}while(ptr != 0 && *ptr != ';');
另外一種作法更安全,就是把 "1 2 3 4;"
拆成 "1", "2, "3", "4"
其他語言這是小菜一碟,如果用 Qt 也很簡單
QStringList sl = str.split(QRegExp('[\\s;]'));
如果你只有 STL 可以用,請參考 C++ cookbook
http://shop.oreilly.com/product/9780596007614.do
Ch4: Tokenizing a String
到了這個程度我想應該就不用再解釋下去了吧 :P
--
各種雜七雜八的心得與無病呻吟
http://goodspeedlee.blogspot.tw/
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 220.136.59.203
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1476891587.A.115.html
推
10/21 12:30, , 1F
10/21 12:30, 1F
討論串 (同標題文章)
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章