반응형
SMALL
그래프의 용어에 대해서 설명합니다.
본 동영상에서 다루고 있는 용어들.
vertex: 노드를 나타냄
edge: vertex간의 관계를 나타내는 선
그래프의 종류: undirected graph, directed graph, weighted graph
adjacent vertex: 어느 vertex에 대해 edge에 의해 연결된 vertex
degree: the number of edges of a vertex
indegree, outdegree: in case of directed graph
cycle: a path that starts from a vertex and returns to the vertex
complete graph: all vertexes are connected one another, the number of edges in a complete graph is
n(n-1)/2 where n is the number of vertexes.
반응형
LIST
'알고리즘' 카테고리의 다른 글
데이터구조 61차시 DFS의 개요 (0) | 2015.08.30 |
---|---|
데이터구조 60차시 그래프의구현: SLL을 이용 (0) | 2015.08.30 |
데이터구조 59차시 그래프의구현: 이차원배열 (0) | 2015.08.30 |
데이터구조 58차시 그래프의 구현방법 (0) | 2015.08.30 |
데이터구조 56차시 그래프 개요 (0) | 2015.08.30 |