We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7045392 commit 4d6d5daCopy full SHA for 4d6d5da
1 file changed
src/data-structures/graph/README.md
@@ -0,0 +1,18 @@
1
+# Graph
2
+
3
+A graph data structure consists of a finite (and possibly
4
+mutable) set of vertices or nodes or points, together
5
+with a set of unordered pairs of these vertices for an
6
+undirected graph or a set of ordered pairs for a
7
+directed graph. These pairs are known as edges, arcs,
8
+or lines for an undirected graph and as arrows,
9
+directed edges, directed arcs, or directed lines
10
+for a directed graph. The vertices may be part of
11
+the graph structure, or may be external entities
12
+represented by integer indices or references.
13
14
+
15
16
+## References
17
18
+[Wikipedia](https://en.wikipedia.org/wiki/Graph_(abstract_data_type))
0 commit comments