How to insert sum of all existing values in unordered set using C++

1 Answer

0 votes
#include <iostream>  
#include <unordered_set>
#include <numeric>

using std::unordered_set;
using std::cout;
using std::endl;


void print(const unordered_set<int>& usset)
{
	for (const auto& element : usset) {
		cout << element << endl;
	}
	std::cout << std::endl;
}

int main()
{
	unordered_set<int> usset = { 1, 2, 3, 4, 5 };

	usset.insert(accumulate(usset.begin(), usset.end(), 0));

	print(usset);

	return 0;
}

/*
run:

1
2
3
4
5
15

*/

 



answered Jan 13, 2018 by avibootz
edited Jan 15, 2018 by avibootz

Related questions

1 answer 198 views
1 answer 212 views
1 answer 216 views
1 answer 206 views
...