gpt4 book ai didi

C++ STL Vector of lists 在列表末尾插入元素

转载 作者:行者123 更新时间:2023-11-27 23:38:52 24 4
gpt4 key购买 nike

我得到了一系列数字,我需要制作一个列表 vector std::vector<std::list<int>> v .我将举一个例子,因为它更容易解释。示例:

数字系列:5 7 2 0 3 9 10 4

解析数字后的 vector :v[0] = {5, 0}; v[1] = {2, 10, 4}; v[2] = {7, 3}; v[3] = {9}{2, 10, 4}是一个列表。

我想对数字系列进行一次解析,然后将数字直接放入列表末尾的 vector 中。对于此示例,将 5 放入 v[0] , 然后将 7 放入 v[2] , 然后将 2 放入 v[1] , 然后将 0 放在 v[0] 列表的末尾5 点后...

最佳答案

I want to know only how to insert an element in a vector on a specific position at the end of the list that is on that specific position.

要将 val 附加到位置 i 的列表中,您需要:

v[i].push_back(val);

关于C++ STL Vector of lists 在列表末尾插入元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57151531/

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