forked from trekhleb/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
French translation for module "Graph" (trekhleb#634)
The first part of the translation is a direct translation of the english part. The second is too, although it wasn't done by me but by wikipedia contributors (the second paragraph of the English wikipedia introduction is exactly the same as the first paragraph of the French wikipedia "Description") Add french version redirection on the README.md. The french version is placed before the portuguese version to have a cleaner diff (no trailing commas to edit)
- Loading branch information
1 parent
8d0f300
commit 0006350
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Graph | ||
|
||
En informatique, un **graphe** est une structure de | ||
données abstraite qui implémente les concepts de | ||
graphe orienté et de graphe non-orienté venant | ||
des mathématiques, plus précisément du domaine de | ||
la théorie des graphes. | ||
|
||
La structure de données abstraite de graphe consiste | ||
en un ensemble fini, éventuellement mutable de sommets | ||
ou nœuds ou points, avec un ensemble de paires ordonnées | ||
ou non de tels éléments. Ces paires sont des arêtes, arcs | ||
non orientés, ou lignes pour un graphe non orienté, et | ||
flèches, arêtes orientées , arcs, ou lignes orientées | ||
dans le cas orienté. Les sommets peuvent faire partie | ||
de la structure, ou être des entités extérieures, | ||
représentées par des entiers ou des références. | ||
|
||
![Graph](https://www.tutorialspoint.com/data_structures_algorithms/images/graph.jpg) | ||
|
||
## References | ||
|
||
- [Wikipedia](https://fr.wikipedia.org/wiki/Graphe_(type_abstrait)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters