[Datastructure] Graph
2020. 2. 10. 13:55
A Graph consists of a finite set of vertices(or nodes) and set of Edges which connect a pair of nodes. 그래프는 유한한 노드들과 노드들의 연결로 구성되어 있는 자료구조이다. 위 그래프에서는 node(= vertices)들은 0,1,2,3,4 이고 Edges는 01, 12, 23, 34, 04, 14, 13 이다.