-
C++ 자료구조] 큐(Queue) + 덱(Deque)-펌코딩Coding/C++__C언어 2021. 12. 8. 16:31728x90
https://m.blog.naver.com/powhy123/221009290191
[C++ 자료구조] 큐(Queue) + 덱 (Deque)
안녕하세요 야생의 불곰입니다. 오늘은 큐(Queue)와 큐가 응용된 형태인 덱(Deque)에 대해서 다뤄보려고 ...
blog.naver.com
Queue
https://en.cppreference.com/w/cpp/container/queuestd::queue - cppreference.com
template< class T, class Container = std::deque > class queue; The std::queue class is a container adapter that gives the programmer the functionality of a queue - specifically, a FIFO (first-in, first-out) data structure. The class template ac
en.cppreference.com
Decue
https://en.cppreference.com/w/cpp/container/dequestd::deque - cppreference.com
template< class T, class Allocator = std::allocator > class deque; (1) (2) (since C++17) std::deque (double-ended queue) is an indexed sequence container that allows fast insertion and deletion at both its beginning and its end. In addition, in
en.cppreference.com
반응형'코딩Coding > C++__C언어' 카테고리의 다른 글
CPP]GCC(1) - Linux manual page (0) 2021.12.20 무료, 하루 10분|C++] 누구나 쉽게 배우는 C++ 프로그래밍 입문-Inflearn (0) 2021.12.15 유료강의$] C++20 훑어보기-inflearn (0) 2021.12.15 C++98 vs. C++20 (0) 2021.12.12 Pointers in C/ C++[Full Course] (0) 2021.12.05 C++ Programming Language Tutorial | Setting up C++ Development Environment | GeeksforGeeks (0) 2021.12.04 기본에서 고급까지 C ++ 자습서-Extern Code&CodeBeauty (0) 2021.12.04 Basic programming introduction (C++ programming tutorial)-Engineer4Free (0) 2021.12.04