#include<iostream>
#include<set>
#include<unordered_map>

using namespace std;

typedef long Node;

typedef unordered_map<Node, set<Node> > Dothi;

Dothi g;

while (n--)
{
    Node u, i;
    int choose;
    cin >> choose;
    if (choose == 1)
    {
        cin >> u >> i;
        cout << (Lienke(u, i) ? "TRUE" : "FALSE");
    }

    checkCase2 = false;

    if (choose == 2)
    {
        cin >> u;
        for (  auto n = g[u].begin(); n!=g[u].end();++n)
        {
            cout << n <<" "; //Error here, cant cout n
            checkCase2 = true;
        }



我不能在下面这行:“ for(自动n = g [u] .begin(); n!= g [u] .end(); ++ n)”。
它说:“没有运算符“ <我被允许使用c ++ 2003

最佳答案

您正在尝试打印迭代器n。由于未实现,因此会出现编译器错误。我想你以下是什么:

std::cout << std::distance(g[u].begin(), n) << std::endl;


这将打印您正在使用的索引。您将需要包含标题<iterator>

如果要在该索引处打印元素(node aka long),请使用取消引用运算符(*),如下所示:

std::cout << *n << std::endl;


更新:

由于您使用的是C ++ 03,因此不允许auto关键字进行类型推导。然后,您应该使用(在for循环中声明n时):

Dothi::iterator n = g[u].begin();

10-07 21:03