merge6.dot 451 B

123456789101112131415161718
  1. digraph G {
  2. a[label="", shape=rectangle];
  3. b[label="[2, 4]", shape=circle];
  4. c[label="[1, 6]", shape=circle];
  5. {rank=same; b,c}
  6. d[label="[4]", shape=circle, style=invis];
  7. e[label="[2]", shape=circle, style=invis];
  8. f[label="[6]", shape=circle, style=invis];
  9. g[label="[1]", shape=circle, 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. }