From 4d6d5da7bb42c6d34f7cc37bed1341bbd2252bf3 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 14 Apr 2018 09:22:23 +0300 Subject: [PATCH] Add README. --- src/data-structures/graph/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/data-structures/graph/README.md diff --git a/src/data-structures/graph/README.md b/src/data-structures/graph/README.md new file mode 100644 index 00000000..6d2247fd --- /dev/null +++ b/src/data-structures/graph/README.md @@ -0,0 +1,18 @@ +# Graph + +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) + +## References + +[Wikipedia](https://en.wikipedia.org/wiki/Graph_(abstract_data_type))