Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Algorithm
- 가상 메모리
- 스케줄링
- mips
- 컴퓨터구조
- 페이지 부재율
- 기아 상태
- 교착상태
- PYTHON
- mutex
- 트랩
- concurrency
- 추상화
- Oracle
- 알고리즘
- 인터럽트
- 동기화
- ALU
- 세마포어
- 프로세스
- 우선순위
- 단편화
- 페이징
- fork()
- BOJ
- 페이지 대치
- 백준
- 부동소수점
- 스레드
- 운영체제
Archives
- Today
- Total
봉황대 in CS
[알고리즘] Minimum Spanning Tree - Prim Algorithm vs. Kruskal Algorithm 본문
Computer Science & Engineering/Algorithm
[알고리즘] Minimum Spanning Tree - Prim Algorithm vs. Kruskal Algorithm
등 긁는 봉황대 2023. 10. 21. 01:32* 본 글은 2023학년도 2학기에 수강한 '알고리즘' 과목 강의 내용을 함께 정리하여 작성하였습니다.
Greedy Algorithms
답을 찾기 위해서 선택을 반복하는 알고리즘이다.
비교적 간단한 기준으로 답을 계속 골라 담고, 이를 바꾸지 않는다.
Minimum Spanning Tree
모든 node를 포함하며, edge cost가 최소가 되는 connected acyclic graph 찾기!
Given a Graph, find Subset of Edges so that a Connected Graph results with Minimum Sum of Edge Costs.
- minimum : edge cost가 최소가 되는
- spanning : 전체를 덮는, 즉 모든 node를 포함하는
Input
- node n개, edge m개로 이루어진 무방향 연결 그래프
- edge들에는 weight(비용)이 존재한다.
즉, MST는 edge cost가 최소가 되도록 하는 n-1개의 edge들을 선택하는 문제와 같다.
Algorithms
- Prim
- Kruskal
Prim Algorithm vs. Kruskal Algorithm
Prim Algorithm
- 시작점이 하나 존재한다. → 거기서부터 edge를 계속 붙여 나간다.
- cycle이 생기는지를 확인하는 방법
: 선택한 edge가 연결하는 node는 이미 tree에 들어가 있는 node인가? - Performance: O(MlogN)
Algorithm과 그의 Correctness 증명 (링크 박아넣을 예정)
Kruskal Algorithm
- 시작점이 없다. → edge를 아무데서나, weight이 작은 순으로 계속 끼워 넣는다.
- cycle이 생기는지를 확인하는 방법
: 선택한 edge가 같은 덩어리(connected component)에 있는 node들을 연결하는가? (by. Union-Find) - Performance: O(MlogM)
Algorithm과 그의 Correctness 증명 (링크 박아넣을 예정)
반응형
'Computer Science & Engineering > Algorithm' 카테고리의 다른 글
[알고리즘] Merge Sort - Proof & Time Complexity (0) | 2023.10.21 |
---|---|
[알고리즘] Selection Sort - Proof & Time Complexity (0) | 2023.10.20 |
[알고리즘] Binary Search - Proof & Time Complexity (0) | 2023.10.20 |
[알고리즘] Mathematical Induction & Vacuous Truth (1) | 2023.10.20 |
[알고리즘] The Halting Problem (1) | 2023.10.19 |
Comments