Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Math
- Method
- 파이썬
- sorting
- Tree
- geometry
- string
- 코딩테스트
- Counting
- SQL
- 코테
- Class
- array
- bit manipulation
- 자바
- Stack
- implement
- 구현
- Number Theory
- Data Structure
- database
- hash table
- dynamic programming
- Matrix
- java
- simulation
- two pointers
- Binary Search
- Binary Tree
- greedy
Archives
- Today
- Total
목록O(n^2.81) (1)
코린이의 소소한 공부노트
Strassen's Matrix Multiplication Algorithm (no example)
1. Problem - 두 개의 n*n 행렬의 곱을 해보자. 여기서 n은 2의 거듭제곱이다. - 슈트라센은 행렬을 4개로 나눠서 계산하는 방식을 택했다. 2. Input 1) 행렬의 길이 n 2) n*n 행렬 A 3) n*n 행렬 B 3. Output 1) A와 B의 곱이 담긴 행렬 C 4. PseudoCode void strassen(int n, matrix A, matrix B, matrix C){ if(n
Back-End/Algorithm
2023. 3. 3. 00:24