hylosort-1.dot 170 B

123456789
  1. digraph G {
  2. a[label="", shape=rectangle];
  3. b[label="[2,3,1,1]", shape=rectangle];
  4. c[label="[10,0,14,4]", shape=rectangle];
  5. {rank=same; b, c}
  6. a -> b;
  7. a -> c;
  8. }