C++ 리스트

Jmnote (토론 | 기여)님의 2018년 4월 11일 (수) 23:22 판 (새 문서: ==개요== ;C++ list ;C++ 리스트 <source lang='cpp'> #include <iostream> #include <list> using namespace std; int main() { list<int> l = { 3, 1, 4, 8 }; for (int n : l) {...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ list
C++ 리스트
#include <iostream>
#include <list>

using namespace std;

int main() {
	list<int> l = { 3, 1, 4, 8 };
	for (int n : l) {
	    std::cout << n << '\n';
	}
}
// 3
// 1
// 4
// 8

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}