C++ 其實提供非常多高階函式把單調的迴圈操作包裝起來
以這個例子來說,切割字串可以用 istringstream 沒錯
但還可以搭配 istream_iterator 把資料流 (stream) 轉成 iterator
有了 iterator 就可以搭配所有 STL 泛型函式使用
比如說把字串切割後存進 vector:
istringstream input("1 22 333 44 5");
istream_iterator<int> begin(input);
istream_iterator<int> end;
vector<int> data;
data.insert(data.begin(), begin, end);
又,C++ 提供 std::accumulate,讓你可以把 iterator 尋訪過的每個元素加起來
這樣就完全不需要另一個 vector 來存這些數字:
istringstream input("1 22 333 44 5");
istream_iterator<int> begin(input);
istream_iterator<int> end;
cout << accumulate(begin, end, 0) << endl; // 405
只要把資料用 iterator 表示,就可以利用 STL 內大量的泛型函式
而且執行速度非常快。
※ 引述《pziyout (pziyout)》之銘言:
: : python可以把一串字串(或輸入一大段字串用空白或逗號相間),轉換後運算
: : 例如 " 10 20 30 123 " 變成