correction insertion + ajout suppression

This commit is contained in:
Gabriel Augendre 2014-12-10 09:41:51 +01:00
parent 37369ac8ec
commit e7cf7ef835

View file

@ -113,6 +113,9 @@ def insereTrie(tete, maillon):
: maillon : Maillon
"""
# Début
if tete is None:
tete = maillon
else:
trouve = False
if maillon.val <= tete.val:
maillon.suivant = tete
@ -132,5 +135,32 @@ def insereTrie(tete, maillon):
if not trouve:
ptr.suivant = maillon
# endif
# endif
# Fin
```
```python
def supprimer(tete, valeur):
"""
: entrées
: tete : Maillon
: maillon : Maillon
"""
# Début
if tete is not None:
ptr = tete
while ptr.suivant is not None and not trouve:
if ptr.suivant.val == valeur:
old = ptr.suivant
ptr.suivant = old.suivant
free(old)
trouve = True
ptr = ptr.suivant
# endwhile
if not trouve and ptr.val == valeur:
old = ptr.suivant
ptr.suivant = old.suivant
free(old)
# endif
# Fin
```