forked from benjaminpast/CH_M1_Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lista.py
34 lines (27 loc) · 848 Bytes
/
Lista.py
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
class Nodo():
def __init__(self, dato):
self.__dato = dato
self.__siguiente = None
def getDato(self):
return self.__dato
def getSiguiente(self):
return self.__siguiente
def setDato(self, val):
self.__dato = val
def setSiguiente(self, val):
self.__siguiente = val
class Lista():
def __init__(self):
self.__cabecera = None
def agregarElemento(self,dato):
if (self.__cabecera != None):
puntero = self.__cabecera
while(puntero != None):
if(puntero.getSiguiente() == None):
puntero.setSiguiente(Nodo(dato))
break
puntero = puntero.getSiguiente()
else:
self.__cabecera = Nodo(dato)
def getCabecera(self):
return self.__cabecera