Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to generate int sequence into list in C++

2 Answers

0 votes
#include <iostream>
#include <list>
#include <algorithm>
#include <iterator>

using std::list;
using std::cout;
using std::endl;

class IntGen {
private:
	int value;
public:
	IntGen(int firstValue) : value(firstValue) {
	}

	int operator() () {             
		return value++;
	}
};

template <typename T>
inline void print(const T &data)
{
	for (const auto &element : data) {
		cout << element << ' ';
	}
	cout << endl;
}


int main()
{
	list<int> lst;

	generate_n(back_inserter(lst),  12, IntGen(1));

	print(lst);
}

/*
run:

1 2 3 4 5 6 7 8 9 10 11 12

*/

 



answered Jan 24, 2018 by avibootz
0 votes
#include <iostream>
#include <list>
#include <algorithm>
#include <iterator>

using std::list;
using std::cout;
using std::endl;

class IntGen {
private:
	int value;
public:
	IntGen(int firstValue) : value(firstValue) {
	}

	int operator() () {             
		return value++;
	}
};

template <typename T>
inline void print(const T &data)
{
	for (const auto &element : data) {
		cout << element << ' ';
	}
	cout << endl;
}


int main()
{
	list<int> lst;

	generate_n(back_inserter(lst),  12, IntGen(30));

	print(lst);
}

/*
run:

30 31 32 33 34 35 36 37 38 39 40 41

*/

 



answered Jan 25, 2018 by avibootz

Related questions

1 answer 129 views
2 answers 162 views
1 answer 104 views
1 answer 136 views
136 views asked Apr 22, 2018 by avibootz
...