hylosort-6.dot 165 B

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