From 0006350cc76f6dc8b1245f625bc268cea8feb447 Mon Sep 17 00:00:00 2001 From: Lucas De Angelis Date: Thu, 27 Jan 2022 21:03:48 +0100 Subject: [PATCH] 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) --- src/data-structures/graph/README.fr-FR.md | 23 +++++++++++++++++++++++ src/data-structures/graph/README.md | 1 + 2 files changed, 24 insertions(+) create mode 100644 src/data-structures/graph/README.fr-FR.md diff --git a/src/data-structures/graph/README.fr-FR.md b/src/data-structures/graph/README.fr-FR.md new file mode 100644 index 00000000..48d3ccd7 --- /dev/null +++ b/src/data-structures/graph/README.fr-FR.md @@ -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)) \ No newline at end of file diff --git a/src/data-structures/graph/README.md b/src/data-structures/graph/README.md index 98acf436..2c8602d9 100644 --- a/src/data-structures/graph/README.md +++ b/src/data-structures/graph/README.md @@ -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