123456789101112131415161718 |
- digraph G {
- a[label="", shape=rectangle];
- b[label="sort [2,4]", shape=rectangle];
- c[label="sort [1,6]", shape=rectangle];
- {rank=same; b,c}
- d[label="sort [4]", shape=rectangle, style=invis];
- e[label="sort [2]", shape=rectangle, style=invis];
- f[label="sort [6]", shape=rectangle, style=invis];
- g[label="sort [1]", shape=rectangle, style=invis];
- {rank=same; d,e,f,g};
- a -> b;
- a -> c;
- b -> d[style=invis];
- b -> e[style=invis];
- c -> f[style=invis];
- c -> g[style=invis];
- }
|