我有一个字符串是白色空格分隔的整数,我想将其转换为整数的向量数组。我的字符串就像:
6 9 17 5 3 4 10 12 7 3 5 10 6 5 0 10 10 10 13 3 6 10 2 11 33 9 14 7 0 8 7 6 38 2 23 8 4 52 7 3 19 12 2 22 3 6 3 1 2 1 5 17 13 5 1 6 0 12 6 9 15 2 22 0 27 2 3 4 7 2 8 2 8 6 11 22 4 9 4 1 1 2 2 16 8 3 1 8 0 4 4 2 1 10 24 15 8 2 6 9
如何将它转换为数组/矢量?
答案 0 :(得分:5)
使用std::istream_iterator
。例如:
std::vector<int> vector(std::istream_iterator<int>(std::cin), std::istream_iterator<int>());
或者std::string
:
std::string s = "6 9 17 5 3 4 10 12 7 3 5 10 6 5 0 10 10 10 13 3 6 10 2 11 33 9 14 7 0 8 7 6 38 2 23 8 4 52 7 3 19 12 2 22 3 6 3 1 2 1 5 17 13 5 1 6 0 12 6 9 15 2 22 0 27 2 3 4 7 2 8 2 8 6 11 22 4 9 4 1 1 2 2 16 8 3 1 8 0 4 4 2 1 10 24 15 8 2 6 9";
std::stringstream ss(s);
std::vector<int> vec((std::istream_iterator<int>(ss)), (std::istream_iterator<int>()));
答案 1 :(得分:1)
以下代码可满足您的需求:
std::istringstream iss(my_string);
std::vector<int> v((std::istream_iterator<int>(iss)),
(std::istream_iterator<int>()));
答案 2 :(得分:1)
这是一个随时可用的示例,其中包含所有必需的标题
#include <iostream>
#include <sstream>
#include <vector>
#include <algorithm>
#include <iterator>
int main()
{
std::string s = "6 9 17 5 3 4 10 12 7 3 5 10 6 5 0 10 10 10 13 3 6 10 2 11 33 9 14 7 0 8 7 6 38 2 23 8 4 52 ";
std::istringstream is( s );
std::vector<int> v;
std::transform( std::istream_iterator<std::string>( is ),
std::istream_iterator<std::string>(),
std::back_inserter( v ),
[]( const std::string &s ) { return ( std::stoi( s ) ); } );
for ( int x : v ) std::cout << x << ' ';
std::cout << std::endl;
return 0;
}
或者确实代替算法std :: transform,您可以简单地使用类std :: vector的构造函数来接受两个迭代器,例如
std::vector<int> v( ( std::istream_iterator<int>( is ) ),
std::istream_iterator<int>() );
或者
std::vector<int> v( { std::istream_iterator<int>( is ),
std::istream_iterator<int>() } );
答案 3 :(得分:0)
我看到了一些更老,更聪明的方法:
#include <stdlib.h> /* strtol */
char *numbers = "6 9 17 5 3 4 10 12 7 3 5 10 6 5 0 10 10 10 13 3 6 10 2 11 33 9 14 7 0 8 7 6 38 2 23 8 4 52 7 3 19 12 2 22 3 6 3 1 2 1 5 17 13 5 1 6 0 12 6 9 15 2 22 0 27 2 3 4 7 2 8 2 8 6 11 22 4 9 4 1 1 2 2 16 8 3 1 8 0 4 4 2 1 10 24 15 8 2 6 9"
long table[512];
char *pt;
int i=0;
pt = numbers;
while(pt != NULL)
table[i++] = strtol (pt,&pt,10);