프로그래밍/C/C++

[C++] STL(Standard Template Library)

코드블랙 2017. 4. 17. 14:50
반응형

C++에는 표준 템플릿 라이브러리라는 STL이 있다.


STL 구성


Sequence containers: 연속된 자료형


Container adaptors: 자료구조


Associative containers: key:value 형식의 자료형


Unordered associative containers: 순서 없는 컨테이너(자바 hash랑 비슷?)


* 참조 사이트 : http://www.cplusplus.com/reference/stl/

반응형