-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfila.py
36 lines (28 loc) · 885 Bytes
/
fila.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
35
36
class Fila:
def __init__(self, N):
self.__arranjo = [None] * (N)
self.__arranjo[0] = "-"
self.__comprimento = N - 1
self.__inicio = self.__fim = 1
def enqueue(self, valor):
self.__arranjo[self.__fim] = valor
if self.__fim == self.__comprimento:
self.__fim = 1
else:
self.__fim = self.__fim + 1
def dequeue(self):
x = self.__inicio
self.__arranjo[self.__inicio] = None
if self.__inicio == self.__comprimento:
self.__inicio = 1
else:
self.__inicio = self.__inicio + 1
return x
def mostrarArranjo(self):
return self.__arranjo
def mostrarInicio(self):
return self.__inicio
def mostrarFim(self):
return self.__fim
def mostrarComprimento(self):
return self.__comprimento