본문 바로가기
{Programing}/Data Structure

STL - Stack

by 탱타로케이 2021. 4. 29.

www.cplusplus.com/reference/stack/stack/

 

stack - C++ Reference

container_typeThe second template parameter (Container)Type of the underlying container

www.cplusplus.com

 

후입선출 선형 컨테이너.

 

막힌 관에 넣는것처럼 한쪽 입구쪽으로만 삽입하고 삭제할수 있다.

 

프링글스 통을 생각하면 편하다. 가장 나중에 들어간 프링글스가 가장 먼저 먹힌다.

 

'{Programing} > Data Structure' 카테고리의 다른 글

STL - set, multiset  (0) 2021.04.29
STL - map, multimap  (0) 2021.04.29
STL - queue, Priority_queue, deque  (0) 2021.04.29
STL - List  (0) 2021.04.29
STL - Array  (0) 2021.04.29

댓글