gpt4 book ai didi

c++ - 如何将 vector 和 push_back() 格式化为其他 vector ?

转载 作者:行者123 更新时间:2023-11-28 05:42:41 25 4
gpt4 key购买 nike

基本上,我试图弄清楚如何做的 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::istringstreamoperator>>,例如:

#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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com