Skip to content

Mise en place d'un algorithme simple de recherche dichotomique

Notifications You must be signed in to change notification settings

Vhivi/RechercheDichotomique

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FR - Algorithme de recherche dichotomique

Description

Pour vous introduire à la complexité algorithmique, vous pouvez créer un algorithme simple de recherche dichotomique.

Vous utiliserez un tableau trié et diviserez le tableau à chaque itération. Si le nombre désiré est dans la première partie, vous continuez avec la première moitié du tableau et rejetez la seconde. Ensuite divisez la première moitié en 2 et répétez l’operation jusqu’à trouver le nombre voulu.

Comment l'utiliser

Le projet a été développé avec Python 3.8.5 et ne nécessite aucune librairie particulière.

Remerciements

Merci au site Comment Coder (https://www.commentcoder.com/) pour ses idées de projets pour débutants dont ce projet est tiré.

EN - Dichotomous search algorithm

Description

To introduce you to algorithmic complexity, you can create a simple dichotomous search algorithm.

You will use a sorted array and divide the array at each iteration. If the desired number is in the first part, you continue with the first half of the array and discard the second half of the table. Then divide the first half into 2 and repeat the operation until you find the desired number.

How to use it

The project has been developed with Python 3.8.5 and does not require any particular library.

Acknowledgements

Thanks to the Comment Coder site (https://www.commentcoder.com/) for its ideas for projects for beginners from which this project is taken.

About

Mise en place d'un algorithme simple de recherche dichotomique

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages