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 shuffle a vector in C++

1 Answer

0 votes
#include <iostream>
#include <vector>
#include <random>
#include <algorithm>
#include <chrono>

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

int main()
{
	std::vector<int> vec(10);

	std::mt19937 gen(std::chrono::system_clock::now().time_since_epoch().count());

	for (int i = 0; i < 10; i++)
		vec[i] = i;

	std::shuffle(vec.begin(), vec.end(), gen);

	for (auto i : vec) {
		cout << i << " ";
	}

	cout << endl;

	return 0;
}


/*
run:

4 9 8 2 7 0 1 5 3 6

*/

 



answered Feb 20, 2018 by avibootz

Related questions

1 answer 148 views
148 views asked Feb 19, 2018 by avibootz
1 answer 89 views
89 views asked Jan 5, 2023 by avibootz
1 answer 60 views
60 views asked Nov 4, 2024 by avibootz
2 answers 147 views
147 views asked Nov 1, 2021 by avibootz
2 answers 175 views
1 answer 153 views
153 views asked Feb 20, 2018 by avibootz
1 answer 145 views
145 views asked Feb 19, 2018 by avibootz
...