일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- data science
- attribute
- 시바견
- Generator
- Substring with Concatenation of All Words
- Python Implementation
- DWG
- 프로그래머스
- 715. Range Module
- shiba
- 43. Multiply Strings
- 컴퓨터의 구조
- concurrency
- kaggle
- 30. Substring with Concatenation of All Words
- iterator
- 109. Convert Sorted List to Binary Search Tree
- 운영체제
- 파이썬
- Decorator
- t1
- 밴픽
- 315. Count of Smaller Numbers After Self
- Convert Sorted List to Binary Search Tree
- Class
- Python
- LeetCode
- Regular Expression
- Python Code
- Protocol
Archives
- Today
- Total
Scribbling
신장 트리, 최소 신장 트리, Kruskal Algorithm 본문
Computer Science/Algorithms & Data Structures
신장 트리, 최소 신장 트리, Kruskal Algorithm
focalpoint 2021. 8. 13. 22:431. 신장 트리: 모든 node를 포함하면서 cycle이 존재하지 않는 그래프를 의미한다.
2. 최소 신장 트리: 신장 트리 중에서 최소 비용으로 만들 수 있는 트리
3. Kruskal Algorithm: 최소 신장 트리를 찾는 알고리즘
- O(vlogv)
- Greedy하게 최소 비용 edge부터 차례로 연결한다.
- 연결하고자 하는 node가 서로소였다면, union을 진행
- 연결하고자 하는 node가 cycle을만든다면, pass
def find_parent(parent, x):
if parent[x] == x:
return x
parent[x] = find_parent(parent, parent[x])
return parent[x]
def union(parent, a, b):
a = find_parent(parent, a)
b = find_parent(parent, b)
if a < b:
parent[b] = a
else:
parent[a] = b
"""
Kruskal Algorithm
"""
# edges는 sort된 상태
for edge in edges:
cost, a, b = edge
if find_parent(parent, a) != find_parent(parent, b):
union_parent(parent, a, b)
result.append(edge)
total_cost += cost
'Computer Science > Algorithms & Data Structures' 카테고리의 다른 글
KMP 문자열 검색 알고리즘 (0) | 2021.08.29 |
---|---|
위상 정렬 (0) | 2021.08.14 |
무향/방향 그래프 내 Cycle 판별 (0) | 2021.08.12 |
서로소 집합 알고리즘 (0) | 2021.08.12 |
Python Set 자료형 (0) | 2021.08.11 |