This commit is contained in:
2025-11-11 13:35:13 +01:00
parent e5666aa2e9
commit 1c1e22b1df
7 changed files with 67 additions and 8 deletions

22
nodo.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include "nodo.hpp"
Nodo::Nodo(){
sig = nullptr;
ptr = nullptr;
}
Nodo::~Nodo() {
delete sig;
delete ptr;
}
Nodo* consulta(char letra);
void inserta(char l);
bool HayMarca();
void PonerMarca();
void PonerEnLista(Cuac *ref) {
}
list<Cuac*> getLista() {
return lista;
}