Graph

http://math.mit.edu/~fox/MAT307-lecture01.pdf

w

离散数学/图论应用在数学/CS以外学科的例子? - 知乎
https://www.zhihu.com/question/21241355

w

https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)

The edges may be directed or undirected. For example, if the vertices represent people at a party, and there is an edge between two people if they shake hands, then this graph is undirected because any person A can shake hands with a person B only if B also shakes hands with A. In contrast, if any edge from a person A to a person B corresponds to A's admiring B, then this graph is directed, because admiration is not necessarily reciprocated. The former type of graph is called an undirected graph and the edges are called undirected edges while the latter type of graph is called a directed graph and the edges are called directed edges.

  • The diagram at right is a graphic representation of the following graph:
V = {1, 2, 3, 4, 5, 6};
E = {{1, 2}, {1, 5}, {2, 3}, {2, 5}, {3, 4}, {4, 5}, {4, 6}}.
原文地址:https://www.cnblogs.com/rsapaper/p/6721320.html