mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
French translation for module "Graph" (#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)
This commit is contained in:
parent
8d0f300aa5
commit
0006350cc7
23
src/data-structures/graph/README.fr-FR.md
Normal file
23
src/data-structures/graph/README.fr-FR.md
Normal file
@ -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))
|
@ -3,6 +3,7 @@
|
||||
_Read this in other languages:_
|
||||
[_简体中文_](README.zh-CN.md),
|
||||
[_Русский_](README.ru-RU.md),
|
||||
[_Français_](README.fr-FR.md),
|
||||
[_Português_](README.pt-BR.md)
|
||||
|
||||
In computer science, a **graph** is an abstract data type
|
||||
|
Loading…
Reference in New Issue
Block a user