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
- simulation
- Class
- array
- two pointers
- Matrix
- SQL
- implement
- java
- Stack
- Binary Search
- 파이썬
- Number Theory
- 코딩테스트
- bit manipulation
- geometry
- database
- Method
- Math
- 코테
- Tree
- hash table
- sorting
- string
- 구현
- Binary Tree
- dynamic programming
- Data Structure
- greedy
- 자바
- Counting
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