Graph review Graph : Graph G는 Vertex (정점) 들의 집합 V(G) , 두 vertex를 이어주는 edge (간선) 들의 집합 E(G) 로 구성되어 있는 구조. G = (V(G), E(G)) Simple graph(라 가정) : Self-loop 나 multiple edge 를 가지지 않는 graph - Directed graph : E(G) 의 각 원소들은 ordered pair 임 (방향성이 있음) e = (a,b) (≠(b,a)) - Undirected graph : E(G) 의 각 원소들은 unordered pair 임 (방향성이 없음). e = {a,b} - (v, u) ∈ E(G) 일 때, v는 u와 adjacent (인접 하다) (undirected graph 에서..