jgrapht 中的 jgrapht 类将允许我动态构建图表

发布于 2024-12-29 04:17:28 字数 209 浏览 2 评论 0原文

我正在 jgrapht 中寻找一个允许我构建图表的类 动态地并在运行时在给定图中生成新边 基于算法分支的时间。 我需要实现算法分支&边界 我看到这个类ListenableDirectedWeightedGraph

是否可以通过使用循环向图形添加边 与ListenableDirectedWeightedGraph ?

I'm looking for a class in jgrapht that will allow me to construct a graph
dynamically and generate new edge in the given graph at run
time based on branch of the algorithm .
I need to implements the algorithm branch & bound
I saw this class ListenableDirectedWeightedGraph

Is it possible to add edges to a graph through the use of a loop
with ListenableDirectedWeightedGraph ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

说谎友 2025-01-05 04:17:28

我使用以下代码构建图表:

private void fillGraph(Tree tree, Graph<Vertex, Edge> graph)
{
    Vertex root = tree.getRootVertex();
    for (Edge edge : root.getEdges())
        addEdge(edge, graph);
}

private void addEdge(Edge edge, Graph<Vertex, Edge> graph)
{
    Vertex source = edge.getSource();
    Vertex target = edge.getTarget();
    if (!graph.containsVertex(source))
        graph.addVertex(source);
    graph.addVertex(target);
    graph.addEdge(source, target, edge);
    if (!target.getEdges().isEmpty())
        for (Edge e: target.getEdges())
            addEdge(e, graph);
}

I build my graph with following code:

private void fillGraph(Tree tree, Graph<Vertex, Edge> graph)
{
    Vertex root = tree.getRootVertex();
    for (Edge edge : root.getEdges())
        addEdge(edge, graph);
}

private void addEdge(Edge edge, Graph<Vertex, Edge> graph)
{
    Vertex source = edge.getSource();
    Vertex target = edge.getTarget();
    if (!graph.containsVertex(source))
        graph.addVertex(source);
    graph.addVertex(target);
    graph.addEdge(source, target, edge);
    if (!target.getEdges().isEmpty())
        for (Edge e: target.getEdges())
            addEdge(e, graph);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文