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

问题描述

enter image description here

为什么这段代码在第31行显示cout<<x1<<x2的错误;

//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是可以打印的整数类型。您可以使用Tree的{​​{1}}访问它指定的向量的元素:

operator[]

您还需要在输出中添加空格,否则您将得到一系列未格式化的数字。例如,您可以在数字之间添加空格,并在每对之后的末尾添加行:

for (std::size_t x1 = 0; x1 < Tree.size(); ++x1)
{
    for (auto x2 : Tree[x1])
    {
        cout << x1 << x2;
    }
}

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...