gpt4 book ai didi

c++ - 如何推回 vector 的 vector ?

转载 作者:可可西里 更新时间:2023-11-01 15:38:15 26 4
gpt4 key购买 nike

我正在接受 20 行输入。我想用空格分隔每一行的内容并将其放入 vector 的 vector 中。如何制作 vector 的 vector ?我很难把它推回去......

我的输入文件:

Mary had a little lamb
lalala up the hill
the sun is up

vector 应该看起来像这样。

ROW 0: {"Mary","had", "a","little","lamb"}
ROW 1: {"lalala","up","the","hill"}

这是我的代码....

string line; 
vector <vector<string> > big;
string buf;
for (int i = 0; i < 20; i++){
getline(cin, line);
stringstream ss(line);

while (ss >> buf){
(big[i]).push_back(buf);
}
}

最佳答案

代码是正确的,但是你的 vector 中有零个元素,所以你不能访问 big[i]

在循环之前设置 vector 大小,可以在构造函数中或像这样:

big.resize(ruleNum);

或者,您可以在每个循环步骤中压入一个空 vector :

big.push_back( vector<string>() );

big[i] 也不需要括号。

关于c++ - 如何推回 vector 的 vector ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15484800/

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