python shuffle函数_shuffle方法[通俗易懂]

(4) 2024-05-26 14:23

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说python shuffle函数_shuffle方法[通俗易懂],希望能够帮助你!!!。

#include <iostream>
#include <algorithm>
#include <array>
#include <vector>
#include <functional>
#include <random>       // std::default_random_engine
#include <chrono>       // std::chrono::system_clock

using namespace std;

int main(){
	
	array<int,8> t1 = {3,5,7,11,13,17,19,23};
	
	unsigned seed = chrono::system_clock::now().time_since_epoch().count();
	shuffle(t1.begin(),t1.end(),default_random_engine(seed));
	
	random_shuffle(t1.begin(),t1.end());
	for_each(t1.begin(),t1.end(),[](int i){cout<<i<<endl;});
	return 0;
}

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复