作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上,我试图弄清楚如何做的 sudo 代码是这样的:
vector<string> lines; // filled by txt file where each line is formatted: "string int"
vector<string> queries;
vector<int> counts;
for (int i = 0; i < lines.size(); i++){
format(lines[i], "%s %d", queries.push_back(%s), queries.push_back(%d));
}
我不知道是什么函数实现了这一点。我尝试了 scanf()
和 strtok()
,但都遇到了问题。有没有更好的办法?
最佳答案
scanf()
和 strtok()
是 C,不是 C++。
在 C++ 中,您使用 std::istringstream
和 operator>>
,例如:
#include <sstream>
std::string line="apple 42";
std::istringstream i(line);
std::string fruit;
int count;
i >> fruit >> count;
if (i.fail())
{
// Parsing error, up to you what to do about it.
}
一旦你解析了字符串和整数,然后像往常一样将它插入你的 vector 中。
关于c++ - 如何将 vector<string> 和 push_back() 格式化为其他 vector ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36827852/
我是一名优秀的程序员,十分优秀!