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