gpt4 book ai didi

c++ - 为什么这段代码在第31行显示cout << x1 << x2;

转载 作者:行者123 更新时间:2023-12-02 10:52:27 26 4
gpt4 key购买 nike

为什么此代码向我显示cout<<x1<<x2的第31行有错误;

//This code is used to define a tree.
#include <bits/stdc++.h>
#include <algorithm>
#include <functional>
#include <iostream>

using namespace std;

int main()

{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
vector<vector<int>> Tree;
int edge, n1, n2; //edges for the tree
cin >> edge;
Tree.resize(edge);

for (int i = 0; i < edge; i++)
{
cin >> n1 >> n2;
Tree[n1].push_back(n2);
}

for (auto x1 : Tree)
{
for (auto x2 : x1)
{
cout << x1 << x2; //Here, it shows error
}
cout << endl;
}

return 0;
}
您能简要解释一下我哪里错了。这也是我的第一个问题,所以请不要对我严厉。

最佳答案

在表达式for (auto x1 : Tree)中,变量x1std::vector<int>。要获得给定的x1Tree中具有的索引以进行打印,这并不容易。解决方案是改为遍历Tree中的索引范围:

for (std::size_t x1 = 0; x1 < Tree.size(); ++x1)
{
// ...
}
现在, x1是可以打印的整数类型。您可以使用 Treeoperator[]来访问它指定的 vector 的元素:
for (std::size_t x1 = 0; x1 < Tree.size(); ++x1)
{
for (auto x2 : Tree[x1])
{
cout << x1 << x2;
}
}
您还需要在输出中添加空格,或者只是获得一系列未格式化的数字。例如,您可以在数字之间添加一个空格,并在每对之后的行末尾:
for (std::size_t x1 = 0; x1 < Tree.size(); ++x1)
{
for (auto x2 : Tree[x1])
{
cout << x1 << ' ' << x2 << '\n';
}
}

关于c++ - 为什么这段代码在第31行显示cout << x1 << x2;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64103951/

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