C++:隨機產生器 伯努利分布(bernoulli distribution) 詳解

來源:互聯網
上載者:User

伯努利分布(bernoulli distribution), 是判斷某件事情發生或者未發生的機率;

給定參數p, 可以修改機率的值, 發生機率(true)是p,未發生機率(false)是1-p;

隨機庫, 提供分布對象bernoulli_distribution, 輸出bool值, 發生為true, 未發生為false;

伯努利分布, 機率為0.5時, 可以等機率輸出一個二元事件, 如先後順序;

注意: 引擎和分布對象, 聲明在函數外, 則每次調用, 都會產生不同的值, 但卻是固定的, 可以使用time(0), 定義不同的引擎;

更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/

代碼如下:

#include <iostream>  #include <vector>  #include <string>  #include <random>  #include <algorithm>  #include <cmath>              using namespace std;        bool play (bool first) {      std::default_random_engine e;      std::bernoulli_distribution b(0.6); //獲勝機率較大      bool win = b(e);      if(first) //我們獲勝的機率大          return win;      else        return !win;  }        int main()  {      std::string resp;      std::default_random_engine e;      std::bernoulli_distribution b;      do {          bool first = b(e); //伯努利生產器          std::cout << (first ? "We go first" : "You get to go first") << std::endl; //判斷先後手          std::cout << ((play(first)) ? "congrats, you won" : "sorry, you lost") << std::endl;          std::cout << "play again? Enter 'yes' or 'no' " << std::endl;      } while (std::cin >>resp && resp[0] == 'y');      return 0;  }

輸出:

We go first  congrats, you won  play again? Enter 'yes' or 'no'   yes  We go first  congrats, you won  play again? Enter 'yes' or 'no'   yes  We go first  congrats, you won  play again? Enter 'yes' or 'no'

作者:csdn部落格 Spike_King

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.