- 论坛徽章:
- 0
|
本帖最后由 sudayly 于 2011-10-11 18:42 编辑
回复 1# zheguzai
先回帖在看贴!
每次试验红球/白球的变化数可能为:
红球 0 或 -2
白球 -1 或 +1
这意味着,每次试验,红球的数可能保持不变或者减少2个,而白球可能增加或减少一个。刚开始有99个红球和白球,最后留下的只能是红球。
写了个程序来模拟:- #include <iostream>
- #include <ctime>
- #include <cstdlib>
- using namespace std;
- class Game {
- private:
- int a_; // No. of white ball
- int b_; // No. of red ball
- public:
- Game(int a, int b) : a_(a), b_(b) {}
- void Run() {
- while (!Stop()) {
- Next();
- cout << a_ << " " << b_ << endl;
- }
- }
- private:
- bool Stop() {
- return a_+b_<=1;
- }
- void Trans1() {
- a_ += 1;
- b_ -= 2;
- }
- void Trans2() {
- a_ -= 1;
- }
- void Next() {
- if (a_ < 1) {
- Trans1();
- return;
- }
- if (b_ < 2) {
- Trans2();
- return;
- }
- if ((rand() * 1.0 / RAND_MAX) <= 0.5) {
- Trans2();
- } else {
- Trans1();
- }
- }
- };
- int main(int argc, char *argv[])
- {
- srand(time(NULL));
- Game game(99, 99);
- game.Run();
- return 0;
- }
复制代码 程序运行结果图示:
这个随机数生成器不给力!!! |
|