"C++ 리스트"의 두 판 사이의 차이

(새 문서: ==개요== ;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) {...)
 
잔글 (Jmnote님이 C++ list 문서를 C++ 리스트 문서로 이동했습니다)
(차이 없음)

2018년 4월 11일 (수) 23:22 판

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 }}