RafaelFascio

TP5-Ejercicio7

Jun 16th, 2021 (edited)
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. public class Ejercicio7AVLTree {
  2. public static void main(String[] args) {
  3. Ejercicio7AVLTree eje = new Ejercicio7AVLTree();
  4. eje.Run();
  5. }
  6. public void Run() {
  7. ejercicioAVL();
  8. }
  9.  
  10. private static void ejercicioAVL() {
  11. System.out.print("\nArbol AVL Agregar\n");
  12. AVLTree<Integer> tree = new AVLTree<Integer>();
  13. tree.setVerbose(true);
  14. int number;
  15. while (true) {
  16. System.out.println("ingrese un numero");
  17. number = Helper.getInteger("Su opción (0 finaliza): ");
  18. if (number == 0) {
  19. System.out.println("\nprograma finalizado!!!!!!!..............");
  20. break;
  21. }else {
  22. try {
  23. tree.add(number);
  24. }catch (Exception exception) {
  25. System.out.println("\nNO SE PERMITE INGRESAR VALORES REPETIDOS.. ");
  26. }
  27. }
  28.  
  29. }
  30. System.out.println("Cantidad de rotaciones: "+tree.getContar());
  31. }
  32.  
  33. }
  34.  
Add Comment
Please, Sign In to add comment