This commit is contained in:
2025-12-01 23:41:00 +01:00
parent 1c1e22b1df
commit 9bc260a750
14 changed files with 254 additions and 38 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "fecha.hpp"
#include "nodo.hpp"
#include "cuac.hpp"
#include <iostream>
@@ -10,7 +11,9 @@ class Arbol {
public:
Arbol();
~Arbol();
void insertar();
void last(int N);
void insertar(Cuac *ref);
void last(int N); // recorrer el árbol de derecha a izquierda
void date(Fecha f1, Fecha f2);
}
void last_rec(Nodo* nodo, int n, int &contador);
void date_rec(Nodo* nodo, string f1, string f2, string actual, int& contador);
};