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
- 생활코딩
- 숙명여자대학교 정보보안 동아리
- HTML
- Sookmyung Information Security Study
- 웹페이지 만들기
- c++
- c
- hackctf
- C언어
- 드림핵
- 파이썬
- PHP 웹페이지 만들기
- 머신러닝
- 백준
- CSS
- 자료구조 복습
- BOJ
- lob
- 숙명여자대학교 정보보안동아리
- 기계학습
- BOJ Python
- SWEA
- siss
- Python
- The Loard of BOF
- XSS Game
- 풀이
- hackerrank
- WarGame
Archives
- Today
- Total
목록괄호 알고리즘 (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