728x90
반응형
#include<iostream>
#include<list>
#include<string>
using namespace std;
void main() {
list<string>myList;
myList.push_back("abcd");
myList.push_back("아카데미");
myList.push_back("홍길동");
list<string>::iterator iter = myList.begin();
while (iter != myList.end()) {
string t = *iter;
cout << t.c_str() << endl;
iter++;
}
}
728x90
반응형
'PROGRAMING📚 > 자료구조📑' 카테고리의 다른 글
STL_템플릿_순서대로 받아오기 (0) | 2021.04.03 |
---|---|
STL_템플릿 _map을 이용하여 (Map 트리) (0) | 2021.04.03 |
STL_템플릿 _list사용하여 출력 (0) | 2021.04.03 |
STL_템플릿 사용하기 (기본_출력) (0) | 2021.04.03 |
이진트리와 재귀함수 사용 (0) | 2021.04.02 |
댓글