【发布时间】:2022-01-25 22:48:12
【问题描述】:
我想使用 graphviz 生成这样的图表:
我怎样才能写出这样的图表?
到目前为止,我已经尝试过:
digraph
{
rankdir = "LR";
subgraph cluster0
{
rank = same { indices array }
color = white;
indices [ shape = record, color = white, label = "{ 1 | 2 | 3 | 4 | 5 | 6 }" ];
array [ shape = record, label = "{ 1 | 2 | 4 | 5 | 6 | 3 }" ];
}
nodesep = .0;
}
制作:
【问题讨论】:
标签: graphviz