두배열합치기 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main() { //freopen("input.txt", "rt", stdin); int n, m, i, j, k, l, tmp; int a[101], b[101], c[201]; scanf("%d", &n); for(i=1; i
Least Recently Used #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main() { //freopen("input.txt", "rt", stdin); int s, n, i, j, pos; int c[10], a[1000]; scanf("%d", &s); scanf("%d", &n); for(i=0; i
삽입정렬 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main() { freopen("input.txt", "rt", stdin); int n, i, j, tmp; int a[101]; scanf("%d", &n); for(i=0; itmp) a[j+1]=a[j]; else { break; } } a[j+1]=tmp; } for(i=0; i
3등의 성적은 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { //freopen("input.txt", "rt", stdin); int n, i, j, tmp, cnt=1; int a[101]; scanf("%d", &n); for(i=0; i < n; i++){ scanf("%d", &a[i]); } for(i=0; i < n; i++){ for(j=i+1; j < n; j++){ if(a[i]a[j+1]) { tmp = a[j]; a[j] = a[j+1]; a[j+1] = tmp; } } } for(i=0; i
탄화수소 질량 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { //freopen("input.txt", "rt", stdin); char ch[10]; int i, a, pos, res, cnum=0, hnum=0; scanf("%s", &ch); if(ch[1]=='H'){ cnum = 1; pos = 1; } else { for(i=1; ch[i]!='H'; i++){ cnum = cnum*10 + (ch[i]-48); } pos=i; } if(ch[pos+1]=='\0'){ hnum = 1; } else { for(i=pos+1;..
3의 개수구하기 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { //freopen("input.txt", "rt", stdin); int n, cur, k=1, lt=1, rt, res=0; scanf("%d", &n); while(lt!=0){ lt=n/(k*10); rt=n%k; cur=(n/k)%10; if(cur>3) res=res+((lt+1)*k); else if(cur==3) res=res+((lt*k)+(rt+1)); else res=res+(lt*k); k=k*10; } printf("%d\n", res); return..
N!의 표현법 #include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { //freopen("input.txt", "rt", stdin); int n, i, j, tmp; scanf("%d", &n); std::vector a(n+1); for(i=2; i
- Total
- Today
- Yesterday
- 인접행렬
- 인접리스트
- react
- 병행프로세스
- 구조체
- stackframe
- 소프트웨어
- Java
- Stack
- 자료구조
- 알고리즘
- 교착상태
- 클래스
- 퀵정렬
- 최단경로
- C
- C++
- client side rendering
- 이진탐색
- 스텍
- 동적프로그래밍
- 재귀함수
- BFS
- javascript
- 세마포어
- 입출력장치
- 배열
- 운영체제
- server side rendering
- dfs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |