티스토리 뷰
정의(Definition)
: A connected graph is a graph that is connected in the sense of a topological space, i.e., there is a path from any point to any other point in the graph. A graph that is not connected is said to be disconnected. This definition means that the null graph and singleton graph are considered connected, while empty graphs on n>=2 nodes are disconnected.
: Connected Graph(연결 그래프)는 위상 공간(topological space)에서 연결된 그래프로, 다시 말하자면 그래프 내에 어느 꼭지점에서든 다른 어떤 꼭지점으로의 길이 있는 것을 말한다.(어느 꼭지점을 선택하던 다른 모든 꼭지점으로 가는 길이 존재하는 그래프). 이 정의는 null graph나 singleton graph 역시 연결됐다는 것을 의미하지만 꼭지점(node, vertex)가 2개 이상인 empty graph는 disconnected(연결되지 않은)라는 뜻이다.

참고
반응형
'기술(Tech, IT) > 알고리즘(Algorithm)' 카테고리의 다른 글
| [Tech, Algo] Sieve of Eratosthenes (에라토스테네스의 체) (1) | 2024.03.12 |
|---|---|
| [Tech, Algo] Adaptive Beamforming (적응형 빔형성) (0) | 2024.03.03 |
| [Algorithm] Checksum (체크섬) (1) | 2024.02.16 |
| [Algorithm] Stack vs Heap (스택 vs 힙) (0) | 2023.10.25 |
| [Algorithm] Interactive Problem (인터랙티브 문제, 대화형 문제) (0) | 2023.08.03 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- min heap
- 소켓 프로그래밍
- 이코노미스트
- 오블완
- 투 포인터
- C++
- The Economist
- machine learning
- 티스토리챌린지
- 이코노미스트 에스프레소
- join
- 안드로이드
- 리트코드
- defaultdict
- I2C
- java
- 파이썬
- leetcode
- The Economist Espresso
- Python
- 머신 러닝
- Computer Graphics
- Hash Map
- 딕셔너리
- vertex shader
- socket programming
- tf-idf
- Android
- DICTIONARY
- ml
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
글 보관함
반응형
