일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- Floyd-Warshall
- 피보나치수열
- Ubuntu64bit
- 최소스패닝트리
- 네이버 지도 api
- 최소신장트리
- tensorflow
- 피노나치 수열
- 코드그라운드
- pythonanywhere
- 알고스팟
- 백트래킹
- 동적계획법
- Mysql5.7
- 다이나믹 프로그래밍
- 쉬운 계단 수
- 세그먼트 트리
- SpringBoot
- Flpyd-Warshall
- 나무자르기
- 이분매칭
- 연속합
- 알고리즘
- 이분탐색
- 축사 배정
- 이분 매칭
- VituralBox
- 분할정복
- 이친수
Archives
- Today
- Total
목록스택 (1)
초보개발자
[10828] 스택
입력: 질의개수 N (질의종류: push X, pop, top, empty, size)출력: 질의에 대한 출력소스코드 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include using namespace std; struct Stack { vector arr; int sz; Stack() : sz(0) {} void push(int X) { arr.push_back(X); sz++; } int pop() { if (sz == 0) return -1; else { int x = arr[--sz]; arr.pop_back(); return x; } } int top() { if (sz == 0) return -1; else return arr[..
카테고리 없음
2017. 7. 11. 12:04