-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodoLetraInicial.cpp
148 lines (117 loc) · 2.71 KB
/
NodoLetraInicial.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include "NodoLetraInicial.h"
NodoLetraInicial::NodoLetraInicial(string letra)
{
this->letra = letra;
this->siguienteLetra = NULL;
this->anteriorLetra = NULL;
this->top = NULL;
}
//retorna la letra inicial del contenido del nodo
string NodoLetraInicial::getLetra()
{
return letra;
}
//retorna el nodo siguiente si no existe retorna NULL
NodoLetraInicial* NodoLetraInicial::getSiguienteNodo()
{
return siguienteLetra;
}
NodoLetraInicial* NodoLetraInicial::getAnteriorNodo()
{
return anteriorLetra;
}
//cambia el nodo siguiente enviando la direccion del nuevo nodo por parametro
bool NodoLetraInicial::setSiguienteNodo(NodoLetraInicial*nodo)
{
siguienteLetra = nodo;
return true;
}
bool NodoLetraInicial::setAnteriorNodo(NodoLetraInicial* nodo)
{
anteriorLetra = nodo;
return true;
}
//inserta una cancion en orden segun el titulo
void NodoLetraInicial::agregarCancion(Cancion& cancion)
{
nodosCanciones* buscando = top;
nodosCanciones* n = new nodosCanciones;
n->Cancion = &cancion;
if (buscando == NULL) {
top = n;
top->siguiente = NULL;
top->anterior = NULL;
ultimo = top;
return;
}
if (buscando->Cancion->getTitulo().compare(cancion.getTitulo()) > 0) {
top->anterior = n;
n->siguiente = top;
n->anterior = NULL;
top = n;
return;
}
while (true) {
if (buscando->Cancion->getTitulo().compare(cancion.getTitulo()) == 0) {
n->siguiente = buscando->siguiente;
if (buscando->siguiente != NULL) {
(buscando->siguiente)->anterior = n;
}
else {
ultimo = n;
}
buscando->siguiente = n;
n->anterior = buscando;
return;
}
if (buscando->Cancion->getTitulo().compare(cancion.getTitulo()) < 0) {
if (buscando->siguiente == NULL) {
buscando->siguiente = n;
n->anterior = buscando;
n->siguiente = NULL;
ultimo = n;
return;
}
//si el siguiente del nodo buscando es mayor entonces el nodo n debe ir entre el buscando y el siguiente de este
else if (buscando->siguiente->Cancion->getTitulo().compare(cancion.getTitulo()) > 0) {
n->siguiente = buscando->siguiente;
if (buscando->siguiente != NULL) {
(buscando->siguiente)->anterior = n;
}
else {
ultimo = n;
}
buscando->siguiente = n;
n->anterior = buscando;
return;
}
}
buscando = buscando->siguiente;
}
}
nodosCanciones* NodoLetraInicial::getCancionNodo(string titulo)
{
if (top == NULL) {
return NULL;
}
nodosCanciones* n = top;
while (true)
{
if (n->Cancion->getTitulo().compare(titulo) == 0) {
return n;
}
n = n->siguiente;
if (n == NULL) {
break;
}
}
return NULL;
}
nodosCanciones* NodoLetraInicial::getCancionNodoUltima()
{
return ultimo;
}
nodosCanciones* NodoLetraInicial::getCancionNodoPrimera()
{
return top;
}