« Analyse de la complexité des algorithmes » : différence entre les versions


m (Remplacement de texte : « ↵↵<small> » par « ==Sources== »)
 
(15 versions intermédiaires par 4 utilisateurs non affichées)
Ligne 1 : Ligne 1 :
== Définition ==
L'analyse de la complexité d'un algorithme consiste en l'étude formelle de la quantité de ressources (par exemple de temps ou d'espace) nécessaire à l'exécution de cet algorithme.


== Domaine ==
== Français ==
[[Category:Vocabulary]]
== Définition ==


'''analyse de la complexité des algorithmes'''


'''analyse des algorithmes'''


== Français ==
== Anglais ==
analyse de la complexité des algorithmes


analyse de la complexité des algorithmes
'''analysis of algorithms'''
==Sources==


analyse des algorithmes
[https://fr.wikipedia.org/wiki/Analyse_de_la_complexit%C3%A9_des_algorithmes  Source : Wikipédia ]


== Anglais ==
[https://www.enseignement.polytechnique.fr/informatique/INF423/uploads/Main/chap10-good.pdf  Source : Polytechnique ]


=== Analysis of algorithms ===
[http://info.usherbrooke.ca/mblondin/cours/ift436_a19/fiches.pdf  Source: Université de Sherbrooke ]


In computer science, the analysis of algorithms is the determination of the computational complexity of algorithms, that is the amount of time, storage and/or other resources necessary to execute them. Usually, this involves determining a function that relates the length of an algorithm's input to the number of steps it takes (its time complexity) or the number of storage locations it uses (its space complexity). An algorithm is said to be efficient when this function's values are small. Since different inputs of the same length may cause the algorithm to have different behavior, the function describing its performance is usually an upper bound on the actual performance, determined from the worst case inputs to the algorithm.
[https://developpement-informatique.com/article/36/introduction-a-lanalyse-des-algorithmes#:~:text=L%27analyse%20des%20algorithmes%20est%20une%20partie%20importante%20de,pour%20fonctionner%20avec%20des%20entr%C3%A9es%20de%20longueur%20arbitraire.   Source : développement-informatique ]


The term "analysis of algorithms" was coined by Donald Knuth.[1] Algorithm analysis is an important part of a broader computational complexity theory, which provides theoretical estimates for the resources needed by any algorithm which solves a given computational problem. These estimates provide an insight into reasonable directions of search for efficient algorithms.
[[Catégorie:GRAND LEXIQUE FRANÇAIS]]
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>

Dernière version du 27 janvier 2024 à 16:47

Définition

L'analyse de la complexité d'un algorithme consiste en l'étude formelle de la quantité de ressources (par exemple de temps ou d'espace) nécessaire à l'exécution de cet algorithme.

Français

analyse de la complexité des algorithmes

analyse des algorithmes

Anglais

analysis of algorithms

Sources

Source : Wikipédia

Source : Polytechnique

Source: Université de Sherbrooke

Source : développement-informatique