STL中的函数random_shuffle()用来对一个元素序列进行随机排列。简单应用CF1156 – B. Ugly Pairs。
#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;
}
vector<string> str;
str.push_back("hello");
str.push_back("world");
str.push_back("welcome");
str.push_back("to");
str.push_back("Beijing");
cout << endl << "string:" << endl;
for(int i = 0; i < 10; i++)
{
random_shuffle(str.begin(),str.end());
for(int j = 0; j < str.size(); j++)
cout << str[j] << " ";
cout<<endl;
}
}
今天的文章C++中的random_shuffle随机化函数分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/32907.html