From 07e5675640141a21ac1bb40081d43fc30a310b4a Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Tue, 24 Feb 2015 10:58:20 +0100 Subject: [PATCH] TP4 LEXIQUE_TRIE --- S2/TP4/tp4.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/S2/TP4/tp4.py b/S2/TP4/tp4.py index 1f448a0..4a828fa 100644 --- a/S2/TP4/tp4.py +++ b/S2/TP4/tp4.py @@ -86,11 +86,13 @@ def est_trie(l): print("Le test indiquant si LEXIQUE est trié retourne %s." % est_trie(LEXIQUE)) -print("Application de la méthode .sort() à LEXIQUE") -LEXIQUE.sort() +print("Création de LEXIQUE_TRIE") +LEXIQUE_TRIE = list(LEXIQUE) # Crée une copie +LEXIQUE_TRIE.sort() -print("Le test indiquant si LEXIQUE est trié retourne %s." % est_trie(LEXIQUE)) +print("Le test indiquant si LEXIQUE_TRIE est trié retourne %s." % est_trie(LEXIQUE_TRIE)) squestion('b') # Effectuer de nombreuses recherches de LEXIQUE # et comparer les temps d'éxécution selon les - # algorithmes utilisés \ No newline at end of file + # algorithmes utilisés +