-
Chapter 3알고리즘 설계와 분석 2022. 10. 24. 21:10728x90
Asymtotic Notation(점근적 표기법)
세타 표기법
평균
ex:7n^3
n^3
오메가 표기법
최소 시간 (가장 최선의 시간)
ex: 7n ^ 3
n ^3, n ^2, n^1 모두 true
빅오 표기법
최대 시간 (가장 최악의 시간)
ex:7n^3
n^3, n^4, n^5 모두 true
'알고리즘 설계와 분석' 카테고리의 다른 글
Chapter 25 : Matching in Bipartite Graphs (0) 2022.12.19 Chapter 24 : Maximum Flow (0) 2022.12.14 Chapter 15 (Greedy Algorithms) (0) 2022.12.11 Chpater 1 & 2 (0) 2022.10.24