r a n d o m − s h u f f l e 算 法 \color{blue} random-shuffle算法 random−shuffle算法
在STL中,函数random_shuffle()用来对一个元素序列进行随机排序。
函数原型如下:
template<class RandomAccessIterator>
void random_shuffle(
RandomAccessIterator _First, //指向序列首元素的迭代器
RandomAccessIterator _Last //指向序列最后一个元素的下一个位置的迭代器
);
试用范围:一般是vector这种连续型可任意访问的容器,string或者数组也能使用。蛋式对于set、map(自带排序功能)的容器或者一下非连续性容器无法使用。
示例:
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main() {
vector<int> nums = {
10, 5, 40, 10, 5, 20, 10, 10, 30 };
cout << "num = " << endl;
for (const auto &num : nums) {
cout << num << " ";
}
cout << endl;
random_shuffle(nums.begin(), nums.end());//vector容器测试
cout << "随机排序后nums = " << endl;
for (const auto &num : nums) {
cout << num << " ";
}
cout << endl;
return 0;
}
string测试:
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main() {
string str = "abcdefgh";
cout << "str = " << str << endl;
random_shuffle(str.begin(), str.end());//string测试
cout << "随机排序后str = " << str << endl;
return 0;
}
数组测试:
#include<iostream>
#include<set>
#include<vector>
#include<algorithm>
using namespace std;
int main() {
int nums[] = {
10, 5, 40, 10, 5, 20, 10, 10, 30 };
cout << "num = " << endl;
for (const auto &num : nums) {
cout << num << " ";
}
cout << endl;
random_shuffle(nums, nums + 9);//数组测试
cout << "随机排序后nums = " << endl;
for (const auto &num : nums) {
cout << num << " ";
}
cout << endl;
return 0;
}
注 意 : \color{red}注意: 注意:set、map等容器调用通不过编译的!其他的容器可以自己测试一下。
今天的文章C++ STL 算法库之 random_shuffle算法分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:http://bianchenghao.cn/32995.html