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.

22 lines
730 B

  1. import java.util.Random;
  2. public class Main {
  3. public static void main(String[] args) {
  4. RBTree<IntComparable> rbTree = new RBTree<>();
  5. Random random = new Random();
  6. for (int i = 0; i <= 15; i++) {
  7. int randomValue = random.nextInt(100);
  8. IntComparable key = new IntComparable(randomValue);
  9. // Füge das Element ein und aktualisiere die DOT-Datei nach jedem Schritt
  10. rbTree.printDOTAfterInsert("output_step_" + i + ".dot", key);
  11. }
  12. // Jetzt können Sie die DOT-Dateien in SVG umwandeln und anzeigen
  13. // dot -Tsvg output_step_0.dot > output_step_0.svg
  14. // dot -Tsvg output_step_1.dot > output_step_1.svg
  15. // ...
  16. }
  17. }