24 lines
418 B
C++
24 lines
418 B
C++
#pragma once
|
|
#include "fecha.hpp"
|
|
#include "cuac.hpp"
|
|
#include "tablahash.hpp"
|
|
#include "arbol.hpp"
|
|
#include <string>
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
class DiccionarioCuacs {
|
|
private:
|
|
TablaHash tabla;
|
|
Arbol arbol;
|
|
public:
|
|
DiccionarioCuacs(int m);
|
|
~DiccionarioCuacs();
|
|
void insertar(Cuac nuevo);
|
|
void follow(string nombre);
|
|
void last(int n);
|
|
void date(Fecha f1, Fecha f2);
|
|
int elem();
|
|
};
|
|
|