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