diff --git a/src/data-structures/graph/README.fr-FR.md b/src/data-structures/graph/README.fr-FR.md index 48d3ccd7..c6a6c908 100644 --- a/src/data-structures/graph/README.fr-FR.md +++ b/src/data-structures/graph/README.fr-FR.md @@ -1,23 +1,25 @@ # Graph En informatique, un **graphe** est une structure de -données abstraite qui implémente les concepts 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 +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, +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) +![Graph](./images/graph.jpeg) + +*Made with [okso.app](https://okso.app)* ## References -- [Wikipedia](https://fr.wikipedia.org/wiki/Graphe_(type_abstrait)) \ No newline at end of file +- [Wikipedia](https://fr.wikipedia.org/wiki/Graphe_(type_abstrait)) diff --git a/src/data-structures/graph/README.md b/src/data-structures/graph/README.md index 2c8602d9..99300537 100644 --- a/src/data-structures/graph/README.md +++ b/src/data-structures/graph/README.md @@ -6,23 +6,25 @@ _Read this in other languages:_ [_Français_](README.fr-FR.md), [_Português_](README.pt-BR.md) -In computer science, a **graph** is an abstract data type -that is meant to implement the undirected graph and +In computer science, a **graph** is an abstract data type +that is meant to implement the undirected graph and directed graph concepts from mathematics, specifically the field of graph theory -A graph data structure consists of a finite (and possibly -mutable) set of vertices or nodes or points, together -with a set of unordered pairs of these vertices for an -undirected graph or a set of ordered pairs for a -directed graph. These pairs are known as edges, arcs, -or lines for an undirected graph and as arrows, -directed edges, directed arcs, or directed lines -for a directed graph. The vertices may be part of -the graph structure, or may be external entities +A graph data structure consists of a finite (and possibly +mutable) set of vertices or nodes or points, together +with a set of unordered pairs of these vertices for an +undirected graph or a set of ordered pairs for a +directed graph. These pairs are known as edges, arcs, +or lines for an undirected graph and as arrows, +directed edges, directed arcs, or directed lines +for a directed graph. The vertices may be part of +the graph structure, or may be external entities represented by integer indices or references. -![Graph](https://www.tutorialspoint.com/data_structures_algorithms/images/graph.jpg) +![Graph](./images/graph.jpeg) + +*Made with [okso.app](https://okso.app)* ## References diff --git a/src/data-structures/graph/README.pt-BR.md b/src/data-structures/graph/README.pt-BR.md index 194a4eb0..de7947cb 100644 --- a/src/data-structures/graph/README.pt-BR.md +++ b/src/data-structures/graph/README.pt-BR.md @@ -17,7 +17,9 @@ para um grafo direcionado. Os vértices podem fazer parte a estrutura do grafo, ou podem ser entidades externas representadas por índices inteiros ou referências. -![Graph](https://www.tutorialspoint.com/data_structures_algorithms/images/graph.jpg) +![Graph](./images/graph.jpeg) + +*Made with [okso.app](https://okso.app)* ## Referências diff --git a/src/data-structures/graph/README.ru-RU.md b/src/data-structures/graph/README.ru-RU.md index 2f656730..95019845 100644 --- a/src/data-structures/graph/README.ru-RU.md +++ b/src/data-structures/graph/README.ru-RU.md @@ -3,7 +3,7 @@ **Граф** в информатике - абстрактный тип данных, который должен реализовывать концепции направленного и ненаправленного графа в математике, особенно в области теории графов. -Структура данных графа состоит из конечного (и возможно изменяющегося) набора вершин или узлов, или точек, совместно с +Структура данных графа состоит из конечного (и возможно изменяющегося) набора вершин или узлов, или точек, совместно с набором ненаправленных пар этих вершин для ненаправленного графа или с набором направленных пар для направленного графа. Эти пары известны как рёбра, арки или линии для ненаправленного графа и как стрелки, направленные рёбра, направленные арки или направленные линии для направленного графа. Эти вершины могут быть частью структуры графа, или внешними @@ -14,7 +14,9 @@ информатике, могут быть представлены графами. Например, строение Википедии можно смоделировать при помощи ориентированного графа, в котором вершины — это статьи, а дуги (ориентированные рёбра) — гиперссылки. -![Граф](https://www.tutorialspoint.com/data_structures_algorithms/images/graph.jpg) +![Граф](./images/graph.jpeg) + +*Made with [okso.app](https://okso.app)* ## Ссылки diff --git a/src/data-structures/graph/README.zh-CN.md b/src/data-structures/graph/README.zh-CN.md index 49c97715..1f885a43 100644 --- a/src/data-structures/graph/README.zh-CN.md +++ b/src/data-structures/graph/README.zh-CN.md @@ -11,9 +11,9 @@ 如果顶点对之间的边是有权重的,该图可称为加权图。 +![Graph](./images/graph.jpeg) - -![Graph](https://www.tutorialspoint.com/data_structures_algorithms/images/graph.jpg) +*Made with [okso.app](https://okso.app)* ## 参考 diff --git a/src/data-structures/graph/images/graph.jpeg b/src/data-structures/graph/images/graph.jpeg new file mode 100644 index 00000000..9fb02f30 Binary files /dev/null and b/src/data-structures/graph/images/graph.jpeg differ