그래프: G = (V,E)
- V vertices 정점 E edge 간선
- |V| 정점 수 |E| 정점 수
그래프의 종류와 선언
그래프 내에서 노드의 최단 경로를 구하는 방법
1. 하나의 정점에서 다른 하나의 정점까지 최단 경로 구하기 single source and single destination shortest path problem
2. 하나의 정점에서 다른 모든 정점까지의 최단 경로 구하기 single source shortest path problem
: 다익스트라 알고리즘
3. 하나의 목적지로 가는 모든 최단 경로 구하기 single destination shortest path problem
4. 최단 경로 구하기 all pairs shortest path problem
: 플로이드 워셜 알고리즘
https://eazymean.tistory.com/9
'CS > 알고리즘' 카테고리의 다른 글
[알고리즘] Tree Traversal - Depth First Traversal (0) | 2020.10.04 |
---|---|
[알고리즘] Prefix Sum 구간 합/누적 합 알고리즘 (0) | 2020.10.01 |
[알고리즘] Sliding Window 슬라이딩 윈도우 (0) | 2020.09.30 |
[알고리즘] Floyd-Warshall 알고리즘 (0) | 2020.03.13 |
[알고리즘] Union-Find (0) | 2020.03.13 |
댓글