gpt4 book ai didi

java - Jung API - 如何在两个现有节点之间添加新的 Edge

转载 作者:太空宇宙 更新时间:2023-11-04 09:03:42 25 4
gpt4 key购买 nike

我尝试与荣格一起制作一个像这样的格子:

my target

到目前为止,我在两个阶段之间建立了链接,但我不知道如何在两个现有顶点之间建立链接。

这里是阶段 1 和阶段 2 之间的链接:

my target

这是阶段 2 和阶段 3 之间的链接:

my target

这里是第 3 阶段和第 4 阶段之间的链接:

my target

问题是我无法将所有阶段放在一起,因为我无法添加具有现有顶点的边。它会出现这个错误:

Exception in thread "main" java.lang.IllegalArgumentException: Tree must not already contain child µ1234
at edu.uci.ics.jung.graph.DelegateTree.addChild(DelegateTree.java:182)
at edu.uci.ics.jung.graph.DelegateTree.addEdge(DelegateTree.java:102)
at edu.uci.ics.jung.graph.DelegateTree.addEdge(DelegateTree.java:346)
at edu.uci.ics.jung.graph.util.TreeUtils.growSubTree(TreeUtils.java:76)
at edu.uci.ics.jung.graph.util.TreeUtils.growSubTree(TreeUtils.java:80)
at edu.uci.ics.jung.graph.DelegateForest.getTrees(DelegateForest.java:295)
at edu.uci.ics.jung.graph.util.TreeUtils.getRoots(TreeUtils.java:34)
at edu.uci.ics.jung.algorithms.layout.TreeLayout.buildTree(TreeLayout.java:102)
at edu.uci.ics.jung.algorithms.layout.TreeLayout.<init>(TreeLayout.java:97)
at edu.uci.ics.jung.algorithms.layout.TreeLayout.<init>(TreeLayout.java:75)
at code.Gui_Arbre.<init>(Gui_Arbre.java:48)
at code.Gui_Arbre.main(Gui_Arbre.java:171)

这是我的代码:

import java.awt.Color;
import java.awt.Container;
import java.awt.Dimension;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JApplet;
import javax.swing.JFrame;
import org.apache.commons.collections15.Factory;
import org.apache.commons.collections15.functors.ConstantTransformer;
import edu.uci.ics.jung.algorithms.layout.TreeLayout;
import edu.uci.ics.jung.graph.DelegateForest;
import edu.uci.ics.jung.graph.Forest;
import edu.uci.ics.jung.visualization.GraphZoomScrollPane;
import edu.uci.ics.jung.visualization.VisualizationViewer;
import edu.uci.ics.jung.visualization.control.DefaultModalGraphMouse;
import edu.uci.ics.jung.visualization.decorators.EdgeShape;
import edu.uci.ics.jung.visualization.decorators.ToStringLabeller;

@SuppressWarnings({ "serial", "deprecation" })
public class Gui_Arbre extends JApplet {
private Fuzzy_Mesure fm;
/**
* le graph
*/
Forest<U, Integer> graph;
// mod?le de lien entre noeud
Factory<Integer> edgeFactory = new Factory<Integer>() {
int i = 0;

public Integer create() {
return i++;
}
};
/**
* l'?l?ment visuel
*/
VisualizationViewer<U, Integer> vv;
TreeLayout<U, Integer> layout;

@SuppressWarnings("unchecked")
public Gui_Arbre(Fuzzy_Mesure fm) {
// create a simple graph for the demo
graph = new DelegateForest<U, Integer>();
this.fm = fm;
createTree();
layout = new TreeLayout<U, Integer>(graph);
vv = new VisualizationViewer<U, Integer>(layout, new Dimension(600, 600));
vv.setBackground(Color.white);
// personnalisation des fleches
vv.getRenderContext().setEdgeShapeTransformer(new EdgeShape.Line<U, Integer>());
vv.getRenderContext().setArrowFillPaintTransformer(new ConstantTransformer(Color.lightGray));
// affiche les labels
vv.getRenderContext().setVertexLabelTransformer(new ToStringLabeller<U>());

Container content = getContentPane();
final GraphZoomScrollPane panel = new GraphZoomScrollPane(vv);
content.add(panel);
final DefaultModalGraphMouse<U, Integer> graphMouse = new DefaultModalGraphMouse<>();
vv.setGraphMouse(graphMouse);
}

/**
* cr?ation de l'arbre
*/

private void createTree() {
for (int i = 0; i < this.fm.getLevel(); i++) {// parcourir etage
for (int y = 0; y < this.fm.getMap().get(i).size(); y++) {// parcourir list de l'etage

// create a link between stage 1 and 2
if (i == this.fm.getLevel() - 2) {

for (int o = 0; o < this.fm.getMap().get(i).get(y).getEnfant().size(); o++) {
graph.addEdge(edgeFactory.create(), this.fm.getMap().get(i).get(y),
this.fm.getMap().get(i).get(y).getEnfant().get(o));

}

}
if (i == this.fm.getLevel() - 3) {// create a link between stage 2 and 3, but as stage 2 already exists
// with existing Vertex, there is an error

for (int o = 0; o < this.fm.getMap().get(i).get(y).getEnfant().size(); o++) {
graph.addEdge(edgeFactory.create(), this.fm.getMap().get(i).get(y),
this.fm.getMap().get(i).get(y).getEnfant().get(o));

}

}

}

}

}

/**
* Tests
*/
public static void main(String[] args) {

JFrame frame = new JFrame();
Container content = frame.getContentPane();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
List<U> set = new ArrayList<>();
for (int i = 0; i < 4; i++) {
set.add(new U(1));
}
Fuzzy_Mesure fm = new Fuzzy_Mesure(set);
content.add(new Gui_Arbre(fm));

frame.pack();
frame.setVisible(true);
}
}

最佳答案

荣格defines a tree作为一张图,从(指定的)根到任何顶点只有一条路径。

格子不是树,也不是森林,所以你无法构建你想要的树/森林图;您需要使用通用的Graph类型。

这也意味着您不能(直接)在图表上使用TreeLayout。您可以构建图形的生成树并在其上使用 TreeLayout,但它可能看起来不像上面的图。

关于java - Jung API - 如何在两个现有节点之间添加新的 Edge,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60481066/

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