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
- memory
- string
- 코딩테스트
- ram
- C
- 프로그래머스
- CS
- 논리게이트
- CS50
- Ethernet
- Kakao
- 메모리
- c++
- 네트워크
- Compiler
- logic gate
- network
- 이더넷
- codingtest
- kakao coding test
- 병렬 통신
- kakao입사
- DRAM
- English
- Coding Test
- javascript
- 프로그래밍
- broardcast
- TCP
- programmers
Archives
- Today
- Total
목록queue (1)
Code Inside

1. Queue 란? 먼저 집어 넣은 데이터가 먼저 나오는 FIFO(First In First Out)구조로 저장하는 형식이다 queue 자료 구조에 a > b > c 순서로 element 를 push 하면, element 를 pop 할 때도 a > b > c 순서로 나오게 된다. 2. C++ queue #_include_queue #include using namespace std; queue qi; queue qc; 위와 같이 헤더를 이용해서 사용할 수 있고, data type 과 같이 선언하여 정의한다. #_push()_pop()_front()_back() //예제 코드 #include #include using namespace std; int main() { queue qi; queue qc; ..
자료 구조
2022. 9. 5. 21:51