Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 아두이노 컴파일러
- WinAPI
- LineTracer
- directx
- arduino compiler
- 자료구조
- 컴퓨터 그래픽스
- C언어
- 수광 소자
- vector
- queue
- 통계학
- c++
- stl
- Algorithm
- map
- 라인트레이서
- Deque
- set
- 아두이노 소스
- list
- Stack
- Visual Micro
- Array
- html
- Arduino
- 운영체제
- priority_queue
- 시스템프로그래밍
- 아두이노
Archives
- Today
- Total
Kim's Programming
Algorithm - generate_n() 본문
원형)
1 2 3 | //기본형 template <class OutputIterator, class Size, class Generator> OutputIterator generate_n (OutputIterator first, Size n, Generator gen); | cs |
의미)
할당합니다 Iterator first가 가리키는 위치부터 gen으로 생성되는 값 n개를 연속적으로 할당합니다.
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #include<iostream> #include<algorithm> #include<vector> #include<ctime> #include<cstdlib> void Print(const std::vector<int>& target) { for (std::vector<int>::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++) std::cout << *iterPos << ' '; std::cout << std::endl; } int Function() { return std::rand() % 100; } void main() { std::srand(static_cast<unsigned int>(std::time(0))); std::vector<int> vector = { 1,2,3,4,5,6,7,8,9 }; std::vector<int>::iterator iter; Print(vector); std::generate_n(vector.begin(), 9, Function); Print(vector); } | cs |
내용)
생성되어 할당된 값의 마지막 원소 다음에 오는 위치를 가리키는 Iterator를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - remove_if() (0) | 2017.07.13 |
---|---|
Algorithm - remove() (0) | 2017.07.13 |
Algorithm - generate() (0) | 2017.07.12 |
Algorithm - fill_n() (0) | 2017.07.12 |
Algorithm - fill() (0) | 2017.07.12 |