Test 分列: Difference between revisions

From 清冽之泉
Jump to navigation Jump to search
No edit summary
Undo revision 4521 by Mwroot (talk)
Line 1: Line 1:
<graphviz>
<graphviz>
digraph structs {
graph 分列 {
    node [shape=record];
rankdir=LR;
    struct1 [label="<f0> left|<f1> mid\ dle|<f2> right"];
 
    struct2 [label="<f0> one|<f1> two"];
A [shape=record; label="<1> Hi | <2> Hello | <3> Why"]
    struct3 [label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"];
B [shape=record; label="<4> | <5> | <5> "]
    struct1:f1 -> struct2:f0;
A:1 -- B:4
    struct1:f2 -> struct3:here;
A:2 -- B:5
A:3 -- B:6
}
}
</graphviz>
</graphviz>

Revision as of 15:38, 13 January 2025