From 0d3e64aa2bee355ac86d61ececb00a629119e1ad Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Mon, 9 Feb 2015 12:03:16 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20commentaires=20commit=20pr=C3=A9c=C3=A9de?= =?UTF-8?q?nt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit J'ai oublié de faire un partial commit --- S2/TP2/tp2.py | 82 +++++++++++++++++++++++++-------------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/S2/TP2/tp2.py b/S2/TP2/tp2.py index 14ba39c..36335a2 100644 --- a/S2/TP2/tp2.py +++ b/S2/TP2/tp2.py @@ -408,67 +408,67 @@ section('Comparaison des deux méthodes') question(1) -# import time +import time -# debut = time.time() +debut = time.time() -# for i in range(30): -# anagrammes(LEXIQUE[i]) +for i in range(30): + anagrammes(LEXIQUE[i]) -# temps1 = time.time() - debut +temps1 = time.time() - debut -# debut = time.time() +debut = time.time() -# for i in range(30): -# anagrammes2(LEXIQUE[i]) +for i in range(30): + anagrammes2(LEXIQUE[i]) -# temps2 = time.time() - debut +temps2 = time.time() - debut -# print('La première méthode à mis %s secondes, et la deuxième %s secondes' %(temps1,temps2)) +print('La première méthode à mis %s secondes, et la deuxième %s secondes' %(temps1,temps2)) -# partie('Phrases d\'anagrammes') # Geoffrey +partie('Phrases d\'anagrammes') # Geoffrey -# question(1) +question(1) -# def arbre_vers_liste(arbre): -# # [[1, [3, [4]]], [2, [3, [4]]]] ⇒ [[1, 3], [1, 4], [2, 3], [2, 4]] -# print(arbre) -# possibilites = [] -# # for i in arbre: +def arbre_vers_liste(arbre): + # [[1, [3, [4]]], [2, [3, [4]]]] ⇒ [[1, 3], [1, 4], [2, 3], [2, 4]] + print(arbre) + possibilites = [] + # for i in arbre: -# return possibilites + return possibilites -# def annagrammes_arbre(liste): -# # TODO Docstring -# anagrammesPremier = anagrammes(liste[0]) -# if len(liste) > 1: # Si il y a des anagrammes après -# res = [] -# for i in anagrammesPremier: -# res.append([i, annagrammes_arbre(liste[1:])]) -# return res -# else: -# return anagrammesPremier +def annagrammes_arbre(liste): + # TODO Docstring + anagrammesPremier = anagrammes(liste[0]) + if len(liste) > 1: # Si il y a des anagrammes après + res = [] + for i in anagrammesPremier: + res.append([i, annagrammes_arbre(liste[1:])]) + return res + else: + return anagrammesPremier -# def developpement(mots): -# # [[1, 2], [3, 4]] ⇒ [[1, 3], [1, 4], [2, 3], [2, 4]] -# # TODO Docstring -# for annagrammes in mots: -# for annagramme in annagrammes: -# return False +def developpement(mots): + # [[1, 2], [3, 4]] ⇒ [[1, 3], [1, 4], [2, 3], [2, 4]] + # TODO Docstring + for annagrammes in mots: + for annagramme in annagrammes: + return False -# def annagrammes_phrase(phrase): -# # TODO Docstring -# mots = phrase.split() -# anagrammesArbre = annagrammes_arbre(mots) -# annagrammesMots = [anagrammes(i) for i in mots] -# return arbre_vers_liste(anagrammesArbre) +def annagrammes_phrase(phrase): + # TODO Docstring + mots = phrase.split() + anagrammesArbre = annagrammes_arbre(mots) + annagrammesMots = [anagrammes(i) for i in mots] + return arbre_vers_liste(anagrammesArbre) -# print(annagrammes_phrase('orange orange orange')) # DEBUG +print(annagrammes_phrase('orange orange orange')) # DEBUG partie('Sauvegarde et récupération')