merge2.dot 497 B

123456789101112131415161718
  1. digraph G {
  2. a[label="", shape=rectangle];
  3. b[label="sort [2,4]", shape=rectangle];
  4. c[label="sort [1,6]", shape=rectangle];
  5. {rank=same; b,c}
  6. d[label="sort [4]", shape=rectangle, style=invis];
  7. e[label="sort [2]", shape=rectangle, style=invis];
  8. f[label="sort [6]", shape=rectangle, style=invis];
  9. g[label="sort [1]", shape=rectangle, style=invis];
  10. {rank=same; d,e,f,g};
  11. a -> b;
  12. a -> c;
  13. b -> d[style=invis];
  14. b -> e[style=invis];
  15. c -> f[style=invis];
  16. c -> g[style=invis];
  17. }