C++ 리스트

Jmnote (토론 | 기여)님의 2018년 4월 11일 (수) 23:22 판 (Jmnote님이 C++ list 문서를 C++ 리스트 문서로 이동했습니다)

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