C++的numeric库中提供了伪随机数生成器,可以通过调用相关函数来生成随机数。以下是一些常用的函数和示例代码:
- 使用rand()函数生成随机整数:
#include#include int main() { for (int i = 0; i < 10; i++) { std::cout << rand() << std::endl; } return 0; }
- 使用random_shuffle()函数打乱数组元素顺序:
#include#include #include int main() { std::vector vec = {1, 2, 3, 4, 5}; std::random_shuffle(vec.begin(), vec.end()); for (int i : vec) { std::cout << i << " "; } std::cout << std::endl; return 0; }
- 使用uniform_int_distribution生成指定范围内的随机整数:
#include
#include
int main() {
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution dis(1, 100);
for (int i = 0; i < 10; i++) {
std::cout << dis(gen) << std::endl;
}
return 0;
}
以上代码展示了C++中使用numeric库生成随机数的几种常用方式,开发者可以根据自己的需求选择合适的方法来生成随机数。