- 알고리즘의 성능을 수학적으로 표현해주는 표기법
- 알고리즘의 시간,공간 복잡도를 표현
- 데이터나 사용자의 증가율에따른 알고리즘 성능 예측
O(1)의 Code
O(1)의 time graph
O(n)의 Code
O(n)의 time graph
O(n^2)의 Code
O(n^2)의 structure
O(n^2)의 time graph
O(nm)의 Code
O(nm)의 structure
O(nm)의 time graph
O(n^3)의 Code
O(n^3)의 structure
O(n^3)의 time graph
O(2^n)의 Code
O(2^n)의 structure
O(2^n)의 time graph
O(logN)의 Code
O(logN)의 structure
O(logN)의 graph
O(sqrtN)의 structure