下面是例子。
vector<vector<string>> vec_str = {{"123", "2015", "18"}, {"345", "2016", "19"}, {"678", "2018", "20"}};
vector<vector<double>> vec_dou;
我想將 vec_str 轉換為 {{123, 2015, 18}, {345, 2016, 19}, {678, 2018, 20}}。我嘗試使用 std::transform 方法,但是當我在 for 回圈或 while 回圈中使用轉換時,效果不佳,這意味著它回傳了錯誤代碼 03。
[Thread 11584.0x39f4 exited with code 3]
[Thread 11584.0x5218 exited with code 3]
[Inferior 1 (process 11584) exited with code 03]
我不知道錯誤的確切原因,所以請不要問我.. VS 代碼只回傳上述錯誤。;-(
最好的方法是什么?
uj5u.com熱心網友回復:
您可以通過嵌套來實作這一點std::transform:
神箭鏈接
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
int main() {
vector<vector<string>> vec_str = {{"123", "2015", "18"}, {"345", "2016", "19"}, {"678", "2018", "20"}};
vector<vector<double>> vec_dou;
std::transform(vec_str.begin(), vec_str.end(), std::back_inserter(vec_dou), [](const auto& strs) {
vector<double> result;
std::transform(strs.begin(), strs.end(), std::back_inserter(result), [](const auto& str) { return std::stod(str); });
return result;
});
for (const auto& nums : vec_dou) {
for (double d : nums) {
cout << ' ' << d;
}
cout << endl;
}
}
uj5u.com熱心網友回復:
這是一個非常簡單的方法:
#include <iostream>
#include <string>
#include <vector>
int main( )
{
std::vector< std::vector<std::string> > vec_str = { {"123", "2015", "18"},
{"345", "2016", "19"},
{"678", "2018", "20"} };
// construct vec_dou at exactly the dimensions of vec_str
std::vector< std::vector<double> >
vec_dou( vec_str.size( ), std::vector<double>( vec_str[0].size( ) ) );
for ( std::size_t row = 0; row < vec_str.size( ); row )
{
for ( std::size_t col = 0; col < vec_str[0].size( ); col )
{
vec_dou[row][col] = std::stod( vec_str[row][col] ); // convert each
} // string to double
}
for ( const auto& doubleNumbers : vec_dou ) // print the double numbers
{
for ( const double& num : doubleNumbers )
{
std::cout << ' ' << num;
}
std::cout << '\n';
}
}
輸出:
123 2015 18
345 2016 19
678 2018 20
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/391947.html
上一篇:合并影像的最有效演算法?
