본문
170627(화) - Stanford Engineering's Algorithms (Divide & Conquer Algorithms)
Architecture/자료구조 및 알고리즘 2017. 6. 27. 19:13
Divide & Conquer Algorithms
1. DIVIDE
into smaller sub problems
2. CONQUER
via recursive calls
3. Combine
solutions of sub problems into one to the original problems
O(nlogn) Algorithms for counting inversions
n개의 수 중에서 2개를 뽑는 경우의 수
Euclidean distance
- 두 점 사이의 거리를 계산할 때 쓰이는 방법
- 이 거리를 이용하여 유클리드 공간을 정의 가능
- 이 거리에 대응하는 노름을 유클리드 노름이라고 한다.
두 점 , 사이의 거리
'Architecture > 자료구조 및 알고리즘' 카테고리의 다른 글
170810(목) - 알고리즘 for Java (BST) (0) | 2017.08.10 |
---|---|
170808(화) - 알고리즘 for Java (Tree) (0) | 2017.08.08 |
170620(화) - Stanford Engineering's Algorithms (Asymptotic Analysis) (0) | 2017.06.13 |
170613(화) - Stanford Engineering's Algorithms (Introduction) (0) | 2017.06.13 |
161203(토) - 알고리즘 문제해결 전략 (0) | 2016.12.03 |
댓글