- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是一个看似常见的问题,所以我希望我听起来没有多余。但是从 rand() 返回的范围应该在 0 和 RAND_MAX 之间,但是,当我执行一个非常简单的 rand 语句时,我总是在非常小的范围内获得返回。
这个范围类似于 1,4XX,XXX,XXX。我想这可能是时钟问题,所以我等了三十分钟,但我仍然得到相同范围内的数字。
这是二十分钟前的一些示例输出:
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439810968
80
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439827775
29
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439827775
29
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439844582
78
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439878196
29
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1439895003
78
这是刚才的示例输出:
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1456483512
78
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1456500319
80
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1456500319
80
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1456517126
29
Matthews-Macbook-Pro:Data_Structures matthewwright$ ./main
1456533933
78
我知道 rand() 并不完美,但这看起来太相似以至于不正确。如果范围是 0 - RAND_MAX,返回的每个数字都在同一范围内似乎很奇怪。
这是我测试的代码:
#include <iostream>
#include <stdio.h> /* printf, scanf, puts, NULL */
#include <stdlib.h> /* srand, rand */
#include <time.h> /* time */
int main(int argc, char const *argv[])
{
/* declarations */
srand(time(NULL));
std::cout << std::rand() << std::endl;
std::cout << std::rand()%100 << std::endl;
return 0;
}
我认为我不需要所有这些 #include 语句,但我看到其他人在使用它们,所以我将它们包括在内以防它会影响我的输出,但事实并非如此。
@Mgetz 和@Curious 提供的链接非常有用。巩固,
信息页面:http://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution
super 有用的讲座(真的,看这个):https://channel9.msdn.com/Events/GoingNative/2013/rand-Considered-Harmful
我在自己的笔记上总结了我在讲座中听到的内容,这样我就不用再忘记了。我没有在这里写代码,大部分代码都在上面链接的“信息页面”中。大多数评论都包含讲座中的信息,尽管不是逐字逐句地来自讲座。再一次,我真的推荐看那个。它包含大量有用的信息。
#include <iostream>
#include <random>
int main(int argc, char const *argv[])
{
/* https://channel9.msdn.com/Events/GoingNative/2013/rand-Considered-Harmful */
/* Randomness Verson 1 : Deterministic */
std::mt19937 mt(1234);
std::uniform_int_distribution<int> dist(0,127);
/* Default is int, but we could specify others.
* The range is [inclusive, inclusive]
*
* Above is Mersenne Twister RNG. It is deterministic, meaning we can get the same result
* if we use "std::mt19937 mt(1234)"; or something like that. This could be useful for some
* people (He mentions games, some experiments, et cetera). It is stupid fast.
*
* However, it isn't cryptographically secure, but it pretty random as random goes. If you
* track the output though, you could guess the next numbers, so don't use it for anything
* secure.
*/
/* Randomness Verson 2 */
std::random_device rd; //Will be used to obtain a seed for the random number engine
std::mt19937 gen(rd()); //Standard mersenne_twister_engine seeded with rd()
std::uniform_int_distribution<int> dis(0, 127); // Inclusive
/* This is not reproducible. This is not deterministic.
* "Possibly Crypto-secure." Seems like using Random Device makes this near perfect random,
* assuming some conditions. I'm not a man who's written security software, and if you are
* writing security software, I assume you're not looking at StackOverflow to figure out how
* to do random numbers. The way he talked about it in the lecture made this seem much more
* secure, but I'm not sure what I'm talking about when it comes to these things
*/
for (int i = 0; i < 3; ++i)
{
/* Below would output the pure Mersenne Twister output, deterministic. This seems to
* be pretty random, but it isn't totally random. */
std::cout << dist(mt) << " ";
/* And below would output the random device output. This should be slower, but
* more truly random. */
//Use dis to transform the random unsigned int generated by gen into an int in [1, 6]
std::cout << dis(gen) << " ";
std::cout<< std::endl;
}
}
最佳答案
使用取模运算符会给生成的“随机数”带来一定程度的偏差。此外,rand()
函数的工作是实现定义的,不遵循跨平台的标准算法。
考虑使用更现代的 C++11 随机数生成功能,这些功能使用标准的广泛接受的随机数生成算法,跨平台工作相同(当然给定相同的种子)。
请参阅 cppreference page for std::uniform_int_distribution 中的以下示例
#include <random>
#include <iostream>
int main()
{
std::random_device rd; //Will be used to obtain a seed for the random number engine
std::mt19937 gen(rd()); //Standard mersenne_twister_engine seeded with rd()
std::uniform_int_distribution<> dis(1, 6);
for (int n=0; n<10; ++n)
//Use dis to transform the random unsigned int generated by gen into an int in [1, 6]
std::cout << dis(gen) << ' ';
std::cout << '\n';
}
这是 Stephan Levavej 的精彩演讲的链接,该演讲对此进行了更深入的探讨 https://channel9.msdn.com/Events/GoingNative/2013/rand-Considered-Harmful
关于c++ - rand() 和 srand() 给出了奇怪的相似结果。 rand() 的返回值非常相似,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45066246/
我有这种来自 Google map 自动完成的奇怪行为(或者我可能错过了某事)...想法?奇怪的: 您在输入中输入某物,例如“伦敦” 您按 [ENTER] 你按下 [CLEAR] 按钮 你点击进入'输
这段代码与《Learning Java》(Oracle Press Books)一书中的代码完全一样,但它不起作用。我不明白为什么它不起作用,它应该起作用。我用 OpenJDK 和 Sun JDK 7
示例 1 中究竟发生了什么?这是如何解析的? # doesnt split on , [String]::Join(",",("aaaaa,aaaaa,aaaaa,aaaaa,aaaaa,aa
我需要获得方程式系统的解决方案。为此,我使用函数sgesv_()。 一切都很好,它使我感到解决方案的正确结果。 但是我得到一个奇怪的警告。 警告:从不兼容的指针类型传递'sgesv_'的参数3 我正在
我目前在制作动画时遇到一个奇怪的问题: [UIView animateWithDuration:3 delay:0
alert('works'); $(window).load(function () { alert('does not work'); });
我的代码: public class MyTest { public class StringSorter implements Comparator { public
我正在学习 JavaScript。尝试理解代码, function foo (){ var a = b = {name: 'Hai'}; document.write(a.name +''
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
这按预期工作: [dgorur@ted ~]$ env -i env [dgorur@ted ~]$ 这样做: [dgorur@ted ~]$ env -i which date which: no
struct BLA { int size_; int size()const{ return size_; } } int x; BLA b[ 2 ]; BLA * p = &b[
我有以下代码: #test img {vertical-align: middle;} div#test { border: 1px solid green; height: 150px; li
我想大多数使用过 C/C++ 的人都对预处理器的工作原理有一定的直觉(或多或少)。直到今天我也是这么认为的,但事实证明我的直觉是错误的。故事是这样的: 今天我尝试了一些东西,但我无法解释结果。首先考虑
我想为 TnSettings 做 mock,是的,如果通过以下方法编写代码,它就可以工作,问题是我们需要为每个案例编写 mock 代码,如果我们只 mock 一次然后执行多个案例,那么第二个将报告异常
我的项目中有以下两个结构 typedef volatile struct { unsigned char rx_buf[MAX_UART_BUF]; //Input buffer over U
Regex rx = new Regex(@"[+-]"); string[] substrings = rx.Split(expression); expression = "-9a3dcb
我的两个应用程序遇到了一个奇怪的问题。这是设置: 两个 tomcat/java 应用程序,在同一个网络中运行,连接到相同的 MS-SQL-Server。一个应用程序,恰好按顺序位于 DMZ 中可从互联
我目前正在与 Android Api Lvl 8 上的 OnLongClickListener 作斗争。 拿这段代码: this.webView.setOnLongClickListener(new
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
只是遇到了奇怪的事情。我有以下代码: -(void)ImageDownloadCompleat { [self performSelectorOnMainThread:@selector(up
我是一名优秀的程序员,十分优秀!