Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Ejercicio7AVLTree {
- public static void main(String[] args) {
- Ejercicio7AVLTree eje = new Ejercicio7AVLTree();
- eje.Run();
- }
- public void Run() {
- ejercicioAVL();
- }
- private static void ejercicioAVL() {
- System.out.print("\nArbol AVL Agregar\n");
- AVLTree<Integer> tree = new AVLTree<Integer>();
- tree.setVerbose(true);
- int number;
- while (true) {
- System.out.println("ingrese un numero");
- number = Helper.getInteger("Su opción (0 finaliza): ");
- if (number == 0) {
- System.out.println("\nprograma finalizado!!!!!!!..............");
- break;
- }else {
- try {
- tree.add(number);
- }catch (Exception exception) {
- System.out.println("\nNO SE PERMITE INGRESAR VALORES REPETIDOS.. ");
- }
- }
- }
- System.out.println("Cantidad de rotaciones: "+tree.getContar());
- }
- }
Add Comment
Please, Sign In to add comment