완전그래프,complete_graph

완전그래프,complete_graph (rev. 1.3)


TODO moved from clique; merge.
{
서로 다른 두 꼭짓점node이 반드시 하나의 변edge으로 연결된 그래프

참고로 완전그래프는 undirected_graph임.

Compare:
완벽그래프,perfect_graph는 다른 것임



from https://m.blog.naver.com/minichuuuuu/220808115381
{
모든 vertex가 직접 adjacent.
그래서 edge의 개수가 정해져 있다.
$n$ 개의 vertex가 있는 complete graph의 edge 수는 $\frac{n(n-1)}2$
}