蒙特卡洛算法
蒙特卡洛算法
蒙特卡洛算法是一种随机化的模拟统计算法,运用广泛;
适用情况:要求精度不高,时间复杂度要求不高,但精确算法的实现较复杂时,蒙特卡洛算法是一个比较好的选择;
适用情况:要求精度不高,时间复杂度要求不高,但精确算法的实现较复杂时,蒙特卡洛算法是一个比较好的选择;
C++实现蒙特卡洛算法求圆周率
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include<iostream>
#include<cstdio>
#include<cmath>
#include<ctime>
#include<cstdlib>
using namespace std;
#define RANM RAND_MAX
const int maxn=1000000;//枚举次数越多越精确
double Rand(const double &L, const double &R)
{
return L + (R - L) * rand() *1.0 / RANM;
}
int main()
{
srand(time(NULL));
double x,y;
double s=0;//在圆内的点的个数
for(int i=0; i<maxn; i++) //做一百万次投针试验
{
x=Rand(-100,100);
y=Rand(-100,100);
if(x*x+y*y< 10000) s++;
}
printf("PI=%lf\n",4*s/maxn);
return 0;
}
本文由作者按照 CC BY 4.0 进行授权