转自:https://blog.csdn.net/vivi_wang_11/article/details/7441803
其他文章:https://blog.csdn.net/lionet_whitney/article/details/51086172
STL中的函数random_shuffle()用来对一个元素序列进行重新排序(随机的),函数原型如下:
template<class RandomAccessIterator>
void random_shuffle(
RandomAccessIterator _First, //指向序列首元素的迭代器
RandomAccessIterator _Last //指向序列最后一个元素的下一个位置的迭代器
);
(自己添加的例子) (其余为转载):
#include <bits/stdc++.h>
using namespace std;
int main()
{
char b[]="abcde";
char a[10];
cout<<"char:"<<endl;
for(int i=0;i<10;i++)
{
strcpy(a,b);
random_shuffle(a,a+5);
cout<<a<<endl;
}
int c[]={1,2,3,4,5};
int d[10];
cout<<endl<<"int:"<<endl;
for(int i=0;i<10;i++)
{
memcpy(d,c,sizeof(c));
random_shuffle(d,d+5);
for(int j=0;j<5;j++) cout<<d[j]<<" ";
cout<<endl;
}
}
例子:
#include "stdafx.h"
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
vector<string> str;
str.push_back("hello");
str.push_back("world");
str.push_back("welcome");
str.push_back("to");
str.push_back("Beijing");
std::random_shuffle(str.begin(),str.end());//迭代器
for(int j = 0; j < str.size(); j++)
{
cout<<str[j].c_str()<<" ";
}
cout<<endl;
system("pause");
return 0;
}
random_shuffle还可以用于数组:
#include "stdafx.h"
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char arr[] = {'a', 'b', 'c', 'd', 'e', 'f'};
std::random_shuffle(arr,arr+6);//迭代器
for(int j = 0; j < 6; j++)
{
cout<<arr[j]<<" ";
}
cout<<endl;
system("pause");
return 0;
}
今天的文章random_shuffle() 随机化分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/32604.html