【发布时间】:2015-10-02 22:29:07
【问题描述】:
我创建了以下 graphviz 图表,表示带有循环的链表:
igraph foo {
rankdir=LR;
node [shape=record];
a [label="{ <data> 12 | <ref> }", width=1.2]
b [label="{ <data> 99 | <ref> }"];
c [label="{ <data> 37 | <ref> }"];
a:ref:c -> b:data [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false, arrowsize=1.2];
b:ref:c -> c:data [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false];
c:ref:c -> b:data [arrowhead=vee, arrowtail=dot, dir=both, tailclip=false];
}
不幸的是,从c:ref 到b:data 的箭头穿过节点c:
如何强制边缘绕过节点而不越过它们?
【问题讨论】:
标签: graphviz