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 | 31 |
Tags
- 코테
- Data Structure
- 자바
- Tree
- Matrix
- dynamic programming
- bit manipulation
- Math
- array
- hash table
- database
- Method
- SQL
- geometry
- Counting
- 파이썬
- 구현
- Class
- Binary Search
- implement
- 코딩테스트
- string
- sorting
- greedy
- Number Theory
- Stack
- Binary Tree
- simulation
- two pointers
- java
Archives
- Today
- Total
목록곱셈 (1)
코린이의 소소한 공부노트
Matrix Multiplication
1. Problem - 두 n*n 행렬의 곱(product)을 구해보자 2. Input 1) 양수 n 2) 2차원 배열 A indexed from 1 to n 3) 2차원 배열 B indexed from 1 to n 3. Output 1) A*B의 결과가 담긴 2차원 배열 C indexed from 1 to n 4. PseudoCode void matrixmult(int n, const number[][] A, const number[][] B, number[][] C){ index i, j, k; for(i=1 ; i
Back-End/Algorithm
2023. 2. 22. 20:47