250x250
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
- priority_queue
- Properties
- Union-find
- sql
- alter
- 스택
- set
- List
- 큐
- spring boot
- JPA
- NIO
- union_find
- string
- html
- CSS
- dfs
- 힙덤프
- GC로그수집
- Java
- deque
- 리소스모니터링
- map
- Calendar
- date
- BFS
- math
- javascript
- 스프링부트
- scanner
Archives
- Today
- Total
목록스택 #백준10828번 (1)
매일 조금씩
백준 10828번: 스택
스택을 구현하는 기본적인 문제다. stack s; main함수 안에 정의 했더니 컴파일 에러가 떴다. 외부에 정의 하니 잘 돌아간다. #include #include #include using namespace std; int message; stack s; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0);//cin 실행속도 향상 cin >> message; for (int i = 0; i > str; if (str == "push") { int n = 0; cin >> n; s.push(n); } else if (str == "pop") { if (s.empty()) { cout
알고리즘
2020. 4. 5. 17:13