gpt4 book ai didi

c++ - 如何访问嵌套的 STL 元素?

转载 作者:太空宇宙 更新时间:2023-11-04 15:48:48 25 4
gpt4 key购买 nike

我有以下代码:

set< vector<int> > set_of_things;
vector<int> triplet(3);

//set_of_things.push_back(stuff) - adding a number of things to the set

我现在如何遍历集合并打印所有元素?

该集合是三元组的集合,因此输出应如下所示:

1 2 3 
3 4 5
4 5 6

最佳答案

这与 C++11 中引入的新的基于范围的 for 循环直接相关:

for (auto const & v : set_of_things)
{
for (auto it = v.cbegin(), e = v.cend(); it != e; ++it)
{
if (it != v.cbegin()) std::cout << " ";
std::cout << *it;
}
std::cout << "\n";
}

如果您不介意尾随空格:

for (auto const & v : set_of_things)
{
for (auto const & x : v)
{
std::cout << *it << " ";
}
std::cout << "\n";
}

或者使用the pretty printer :

#include <prettyprint.hpp>
#include <iostream>

std::cout << set_of_things << std::endl;

如果您使用的是较旧的编译器,则必须根据迭代器来拼写这两个迭代。

关于c++ - 如何访问嵌套的 STL 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12277195/

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