我很难产生以下优势:

...
h1 -> "h2":f2;


如本例所示:datastruct

考虑以下Python代码:

#!/usr/bin/env python

import sys
import gv

gh = gv.digraph('g')

gv.setv(gh, 'rankdir', "LR")

node = gv.protonode(gh)
gv.setv(node, 'shape', 'record')

n1 = gv.node(gh, "h1")

n2 = gv.node(gh, "h2")
gv.setv(n2, "label", "<f1> s1 | <f2> s2")

e = gv.edge(n1, n2)

gv.write(gh, "out.dot")


执行后将给出以下输出:

digraph g {
    node [label="\N"];
    graph [rankdir=LR];
    h1 [shape=record];
    h2 [label="<f1> s1 | <f2> s2", shape=record];
    h1 -> h2;
}


这给我留下了一个问题,即如何获得上面显示的边,以便它指向正确的记录条目。

提前致谢。

最佳答案

您需要设置headport来做到这一点:

我只在C语言中完成了此操作,但是从您在python中显示的内容来看,我认为是这样的:

e = gv.edge(n1, n2)
gv.setv(e, "headport", "f1") # or another key from the records


这将创建如下边缘:

h1 -> h2:f1;


如果需要指向相反方向,也可以设置尾端口。

10-06 06:55