我做了这样的实验 - 从 C 和 C# 中得出1000万个随机数字。 然后从随机整数中的 15 位数中计算每个位数的倍数。 (我选择了 15 位数, 因为 C 支持随机整数最多只有 < code> 0x7fff 。 )
What i ve got is this:
I have two questions:
Why there are 3 most probable bits ? In
C
case bits8,10,12
are most probable. And inC#
bits6,8,11
are most probable.似乎C# 最有可能的位数是“ 最主要 / em> ” 改变两个位置, 然后与 C 最有可能的位数比较。 为什么这样? 因为 C# 使用其他 RAND_ MAX 常数还是什么?
My test code for
C
:
void accumulateResults(int random, int bitSet[15]) {
int i;
int isBitSet;
for (i=0; i < 15; i++) {
isBitSet = ((random & (1<<i)) != 0);
bitSet[i] += isBitSet;
}
}
int main() {
int i;
int bitSet[15] = {0};
int times = 10000000;
srand(0);
for (i=0; i < times; i++) {
accumulateResults(rand(), bitSet);
}
for (i=0; i < 15; i++) {
printf("%d : %d
", i , bitSet[i]);
}
system("pause");
return 0;
}
和 >C_/code> 的测试代码 :
static void accumulateResults(int random, int[] bitSet)
{
int i;
int isBitSet;
for (i = 0; i < 15; i++)
{
isBitSet = ((random & (1 << i)) != 0) ? 1 : 0;
bitSet[i] += isBitSet;
}
}
static void Main(string[] args)
{
int i;
int[] bitSet = new int[15];
int times = 10000000;
Random r = new Random();
for (i = 0; i < times; i++)
{
accumulateResults(r.Next(), bitSet);
}
for (i = 0; i < 15; i++)
{
Console.WriteLine("{0} : {1}", i, bitSet[i]);
}
Console.ReadKey();
}
Very thanks !! Btw, OS is Windows 7, 64-bit architecture & Visual Studio 2010.
EDIT
Very thanks to @David Heffernan. I made several mistakes here:
- Seed in C and C# programs was different (C was using zero and C# - current time).
- I didn t tried experiment with different values of
Times
variable to research reproducibility of results.
Here s what i ve got when analyzed how probability that first bit is set depends on number of times random() was called:
So as many noticed - results are not reproducible and shouldn t be taken seriously.
(Except as some form of confirmation that C/C# PRNG are good enough :-) ).