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
- stl
- html
- 운영체제
- set
- vector
- WinAPI
- Array
- arduino compiler
- 아두이노 컴파일러
- LineTracer
- C언어
- Algorithm
- 라인트레이서
- 수광 소자
- 통계학
- directx
- list
- c++
- 아두이노
- Arduino
- 자료구조
- priority_queue
- 시스템프로그래밍
- Stack
- Deque
- map
- 컴퓨터 그래픽스
- Visual Micro
- 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 |