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
- Javascript
- lob
- siss
- PHP 웹페이지 만들기
- WarGame
- 숙명여자대학교 정보보안 동아리
- 드림핵
- SWEA
- hackerrank
- BOJ
- 백준
- HTML
- 생활코딩
- Sookmyung Information Security Study
- XSS Game
- 기계학습
- BOJ Python
- 풀이
- 머신러닝
- hackctf
- Python
- C언어
- 파이썬
- 웹페이지 만들기
- c
- c++
- CSS
- 자료구조 복습
- 숙명여자대학교 정보보안동아리
- The Loard of BOF
Archives
- Today
- Total
목록9012 (1)
혜랑's STORY
[BOJ_C++] 9012번 : 괄호
학교 과제와 비슷해서 풀어보았다. 저번에 엄청 틀렸었는데 이번엔 맞아서 기분 좋네 ㅎㅅㅎ - 풀이 #include #include #include using namespace std; #define LINESIZE 1000 struct Stack { char* store; int capacity; int top; }; int create(Stack& s, int size = 100) { s.capacity = size; s.top = 0; return (s.store = new char[size]) != 0; } // If the stack is full, then push val onto the stack s and return 1, // otherwise simply return 0 to indica..
무지성 공부방/알고리즘 해결
2021. 3. 26. 13:10