일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 편스토랑 우승상품
- 맥북
- 백준
- 편스토랑
- 프로그래머스 파이썬
- Baekjoon
- AI 경진대회
- Kaggle
- ubuntu
- Docker
- SW Expert Academy
- 데이콘
- ChatGPT
- 파이썬
- 코로나19
- Real or Not? NLP with Disaster Tweets
- github
- dacon
- 우분투
- 더현대서울 맛집
- programmers
- 금융문자분석경진대회
- leetcode
- gs25
- PYTHON
- hackerrank
- 프로그래머스
- 자연어처리
- 캐치카페
- Git
- Today
- Total
목록
반응형
Stack and Queues (2)
솜씨좋은장씨
A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic queu..
A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are considered to be a matched pair if the an opening bracket (i.e., (, [, or {) occurs to the left of a closing bracket (i.e., ), ], or }) of the exact same type. There are three types of matched pairs of brackets: [], {}, and (). A matching pair of brackets is not balanced if the set of bracket..