Skip to content

Commit

Permalink
French translation for module "Graph" (trekhleb#634)
Browse files Browse the repository at this point in the history
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
lucas-deangelis authored Jan 27, 2022
1 parent 8d0f300 commit 0006350
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/data-structures/graph/README.fr-FR.md
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))
1 change: 1 addition & 0 deletions src/data-structures/graph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0006350

Please sign in to comment.