Skip to content

Commit b7394d4

Browse files
committed
Pequenas melhorias relacionadas a PEP8
1 parent 593d85e commit b7394d4

File tree

4 files changed

+12
-25
lines changed

4 files changed

+12
-25
lines changed

src/python/arvore_binaria_de_busca.py

+5-19
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(self, chave):
1212
self.direita = None
1313

1414

15-
############# Metodos de Busca #############
15+
# Metodos de Busca
1616
def busca_recursiva(no, chave):
1717
if no is None:
1818
print(f'{chave} nao foi encontrado na arvore')
@@ -37,10 +37,7 @@ def busca_linear(no, chave):
3737
return None
3838

3939

40-
############################################
41-
42-
43-
############ Metodo de Insercao ############
40+
# Metodo de Insercao
4441
def insere(no, chave):
4542
if no is None:
4643
no = Arvore(chave)
@@ -52,9 +49,7 @@ def insere(no, chave):
5249
return no
5350

5451

55-
############################################
56-
57-
########### Metodos de Impressao ###########
52+
# Metodos de Impressao
5853
IMPRIME_ARVORE = ''
5954

6055

@@ -85,10 +80,7 @@ def pos_ordem(no):
8580
IMPRIME_ARVORE += str(no.chave) + ', '
8681

8782

88-
############################################
89-
90-
91-
######### Acha a Altura da Arvore ##########
83+
# Acha a Altura da Arvore
9284
def maximo(a, b):
9385
if a > b:
9486
return a
@@ -101,10 +93,7 @@ def altura(no):
10193
return 1 + maximo(altura(no.esquerda), altura(no.direita))
10294

10395

104-
############################################
105-
106-
107-
########### Metodos de Exclusao ############
96+
# Metodos de Exclusao
10897
def busca_no_pai(no, ch):
10998
no_pai = no
11099
while no is not None:
@@ -153,9 +142,6 @@ def exclui(no, ch):
153142
return True
154143

155144

156-
############################################
157-
158-
159145
if __name__ == '__main__':
160146
arvore = Arvore(3) # Cria arvore (raiz)
161147
# Insere varios valores na arvore

src/python/binary_tree.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class Node:
55
"""
6-
Node class store the data and the pointers to the next nodes (left and right).
6+
Node class store the data and the pointers to the next nodes (left/right).
77
"""
88

99
def __init__(self, data):
@@ -13,7 +13,7 @@ def __init__(self, data):
1313

1414
class BinaryTree:
1515
"""
16-
Binary tree class provides some methods to insert, remove and print the data.
16+
Binary tree class provides some methods to insert, remove and print data.
1717
"""
1818

1919
def __init__(self):

src/python/passeio_do_cavalo.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ def tenta_mover(i, x, y):
2626
"""
2727
done = i > numSqr # True ou False
2828
k = 0
29-
while done == False and k < 8:
29+
while not done and k < 8:
3030
u = x + dx[k] # Coordenadas dos 8 movimentos possiveis do cavalo
3131
v = y + dy[k] # Coordenadas dos 8 movimentos possiveis do cavalo
3232
if aceitavel(u, v):
3333
tabuleiro[u][v] = i
3434
done = tenta_mover(i + 1, u, v) # Tenta outro movimento
35-
if done == False:
35+
if not done:
3636
tabuleiro[u][v] = 0 # Sem sucesso, descarta movimento
3737
k += 1 # Passa ao proximo movimento possivel
3838
return done
@@ -42,7 +42,7 @@ def mostra_movimento(x, y):
4242
tabuleiro[x][y] = 1
4343
done = tenta_mover(2, x, y)
4444
string = ""
45-
if done == True:
45+
if done:
4646
for x in range(0, num):
4747
for y in range(0, num):
4848
if tabuleiro[x][y] < 10:

src/python/selection_sort.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def selection_sort(vetor, indice):
1414
if indice >= len(vetor) - 1:
1515
return -1
1616

17-
min_indice = indice # minIndice vai guardar posicao onde esta o menor valor em relacao ao indice
17+
# minIndice guarda a posicao onde esta o menor valor em relacao ao indice
18+
min_indice = indice
1819

1920
for i in range(indice + 1, len(vetor)):
2021
if vetor[i] < vetor[min_indice]:

0 commit comments

Comments
 (0)