mergesort-2.dot 208 B

123456789
  1. graph G {
  2. top[label="", shape=circle];
  3. left1[label="sort [2,3,1,1]", shape=rectangle];
  4. right1[label="sort [10,0,14,4]", shape=rectangle];
  5. {rank=same; left1, right1}
  6. top -- left1;
  7. top -- right1;
  8. }