302
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user