Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 강화학습
- image processing
- 백준
- dfs
- object detection
- AlexNet
- BFS
- machine learning
- edge detection
- MinHeap
- TD
- sklearn
- Mask Processing
- dynamic programming
- 딥러닝
- opencv
- DP
- C++
- SIFT
- dropout
- Python
- Reinforcement Learning
- MySQL
- exists
- classification
- 그래프 이론
- clustering
- canny edge detection
- 머신러닝
- overfitting
Archives
- Today
- Total
목록위상정렬 (1)
JINWOOJUNG
[ GRAPH ] Topological Sorting
Topological Sorting(위상 정렬)을 배우기 전, 비순환 유향 그래프에 대해서 알아보자. 구체적인 코드보다는 동작과정에 집중한다. Directed Acyclic Graph(DGA) 비순환 유향 그래프DAG는 싸이크링 없는 유향 그래프이다. 왼쪽 그래프가 DAG에 해당된다. 만약 $b Node \to c Node$의 방향이 반대면, 오른쪽과 같이 Cycle이 발생하게 된다. 이와 같은 Cycle이 존재하는 유향 그래프에서는 Topological Sorting을 적용할 수 없다. Topological Sorting 위상정렬 위상 정렬은 DAG에서 정점들을 선형으로 정렬하는 것이다. 이때, $x Node \to y Node$의 간선이 존재하면, $x Node$는 $y Node$보다 앞에 위치하..
2024/Study
2024. 6. 2. 15:06