STL8 STL관련 헤더파일 정리 종류 클래스 헤더 파일 컨테이너 클래스(container classes) vector vector list list deque deque set, multiset set map, multimap map hash_set, hash_multiset hash_set hash_map, hash_multimap hash_map 컨테이너 어댑터(container adaptors) stack stack queue, priority_queue queue 제네릭 알고리듬(generic algorithms) 아래 다섯 개를 제외한 모든 알고리듬 algorithm 범용 수치 알고리듬(generalized numeric algorithms) iota, accumulate, inner_product, adjacent_diffe.. 2008. 2. 18. Generic Count Algorithm #include #include #include #include using namespace std; int main() { cout 2008. 2. 12. Iterator Type 2008. 2. 12. 신기한 stl의 세계 #include #include #include using namespace std; int main() { list list1; list1.push_back(10); list1.push_back(3); list1.push_back(2); list1.push_back(1); ostream_iterator out(cout, " "); copy(list1.begin(), list1.end(), out); cout 2008. 2. 11. 이전 1 2 다음