You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
771 B

  1. // Red Black Tree Example
  2. digraph G {
  3. graph [ratio=.48];
  4. node [style=filled, color=black, shape=circle, width=.6
  5. fontname=Helvetica, fontweight=bold, fontcolor=white,
  6. fontsize=24, fixedsize=true];
  7. {rank = same; n1; 6; n4; n5; n6; n7; 22; 27};
  8. 6, 8, 17, 22, 27
  9. [fillcolor=red];
  10. n1, n2, n3, n4, n5, n6, n7, n8, n9, n10, n11
  11. [label="NIL", shape=record, width=.4,height=.25, fontsize=16];
  12. 13 -> 8, 17;
  13. 8 -> 1 [weight=6];
  14. 8 -> 11 [weight=5];
  15. 17 -> 15 [weight=4];
  16. 17 -> 25 [weight=5];
  17. 1 -> n1 [weight=7];
  18. 1 -> 6;
  19. 11 -> n4 [weight=10];
  20. 11 -> n5 [weight=14];
  21. 6 -> n2, n3;
  22. 15 -> n6 [weight=14];
  23. 15 -> n7 [weight=10];
  24. 25 -> 22;
  25. 25 -> 27 [weight=6];
  26. 22 -> n8 [weight=5];
  27. 22 -> n9 [weight=3];
  28. 27 -> n10 [weight=3];
  29. 27 -> n11 [weight=5];
  30. }