일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코테
- Matrix
- Math
- Binary Search
- greedy
- 자바
- database
- Counting
- Tree
- 코딩테스트
- geometry
- array
- simulation
- Method
- sorting
- implement
- Class
- dynamic programming
- Binary Tree
- java
- two pointers
- Number Theory
- SQL
- hash table
- 구현
- bit manipulation
- string
- Stack
- 파이썬
- Data Structure
- Today
- Total
목록Back-End (55)
코린이의 소소한 공부노트
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
1. Problem - n개의 요소를 오름차순으로 정렬해보자. 2. Input 1) 양수 n 2) 배열 S indexed from 1 to n 3. Output 1) 오름차순으로 정렬된 S 4. PseudoCode void exchangesort(int n, keytype[] S){ index i, j; for(i=1 ; i
1. Problem - S에 있는 모든 요소를 더하자 2. Input 1) 양수 n 2) 배열 S indexed from 1 to n 3. Output 1) S의 요소를 모두 더한 결과 4. PseudoCode number sum(int n, const number S[]){ index i; number result = 0; for(i=1 ; i
1. Problem - n개의 요소가 담긴 배열 S에서 x를 찾아보자 2. Input 1) 양수 n 2) 배열 S indexed from 1 to n 3) key x 3. Output 1) x의 위치 2) S에 x가 없다면 0을 반환 4. PseudoCode index seqsearch(int n, const keytype[] S, keytype x, index location){ location = 1; while(locationn) location = 0; return location; } 5. Example class Test { public static void main(String[] args){ int[] arr = {5, 9, 3, 10, 6, 2, 1}; int a = 6; int inde..