Computer >> Máy Tính >  >> Lập trình >> Lập trình

Phân phối hình học trong cấu trúc dữ liệu

Phân phối Hình học là một phân phối xác suất rời rạc cho n =0, 1, 2,…. có hàm mật độ xác suất.

$$ P \ lgroup n \ rgroup =p \ lgroup1-p \ rgroup ^ {n} $$

Chức năng phân phối là -

$$ D \ lgroup n \ rgroup =\ displaystyle \ sum \ limit_ {i =0} ^ n P \ lgroup i \ rgroup =1-q ^ {n + 1} $$

Ví dụ

#include <iostream>
#include <random>
using namespace std;

int main(){
   const int nrolls = 10000; // number of rolls
   const int nstars = 100; // maximum number of stars to distribute
   default_random_engine generator;
   geometric_distribution<int> distribution(0.3);
   int p[10]={};
   for (int i=0; i<nrolls; ++i) {
      int number = distribution(generator);
      if (number<10)
      p[number]++;
   }
   cout << "Geometric_distribution (0.3):" << endl;
   for (int i=0; i<10; ++i)
      cout << i << ": " << string(p[i]*nstars/nrolls,'*') << endl;
}

Đầu ra

0: *****************************
1: ********************
2: ***************
3: **********
4: *******
5: ****
6: ***
7: **
8: *
9: *