From 33e8ba07ab118b9af699fad267d62022ca1055e6 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Tue, 24 Feb 2015 11:02:52 +0100 Subject: [PATCH] =?UTF-8?q?TP4=202=20D=C3=A9finition=20des=20=C3=A9l=C3=A9?= =?UTF-8?q?ments=20choisis=20pour=20la=20recherche?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- S2/TP4/tp4.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/S2/TP4/tp4.py b/S2/TP4/tp4.py index 4a828fa..50d0c39 100644 --- a/S2/TP4/tp4.py +++ b/S2/TP4/tp4.py @@ -96,3 +96,13 @@ squestion('b') # Effectuer de nombreuses recherches de LEXIQUE # et comparer les temps d'éxécution selon les # algorithmes utilisés +# Définition des éléments choisis pour la recherche +from random import randint + +NB_ELEMENTS = 10 +elements = list() +taille = len(LEXIQUE) +for n in range(NB_ELEMENTS): + elements.append(LEXIQUE[randint(0, taille)]) + +# \ No newline at end of file