gpt4 book ai didi

c++ - 我可以让 C++ 代码结构相互看到吗?

转载 作者:行者123 更新时间:2023-11-30 03:40:59 25 4
gpt4 key购买 nike

<分区>

我英语不好..抱歉

例如,

struct structure1
{
structure2 st;
}

struct structure2
{
structure1 st;
}

它有不完整的类型错误

我如何使用此代码??

它在 Java 中运行良好,但在 C++ 中我认为是因为自上而下的过程..

我不知道它有好的解决方案

这是我的真实代码

它是图算法的一部分

struct Edge
{
Node destination;

int capacity;

int cost;

Edge dual;

Edge(Node n, int c, int s)
{
capacity = c;

cost = s;

destination = n;

dual.cost = -9999;
}

};

struct Node
{
int cost;

vector<Edge> edges;

Edge from;

string name;

bool onq;

Node()
{
from.capacity = -9999;
}

void clear()
{
cost = 0;
edges.clear();
from.capacity = -9999;
}
};

谢谢!!

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