斌酱归档-蒙特科勒法(概率法)求pi

蒙特科勒法(概率法)求pi

所需注意

主要思想就是生成随机数,但是注意C语言中rand()不是线程安全的函数-多线程应使用rand_r()!!!

原理在这里插入图片描述

采用图中第二种方法

代码如下

//
//  pi_2.c
//  pi
//  蒙特科勒法
//  Created by Yibin on 2021/3/28.
//  Copyright © 2021 Yibin. All rights reserved.
//
#include <iostream>
#include <pthread.h>
#include <iomanip>
#include <ctime>
#include <stdio.h>
#include <stdlib.h>
using namespace std;

double pi = 0.0;
int N,T;
pthread_mutex_t mut;

//线程入口函数
void *thread_function(void *arg){
    unsigned int seed = 123;
    int sample = N/T;
    int demo = 0;
    for(int i=0;i<sample;i++){
        double x = 1.0*rand_r(&seed)/RAND_MAX;
        double y = 1.0*rand_r(&seed)/RAND_MAX;
        if(x*x + y*y < 1.0){
            demo++;
        }
    }
    pthread_mutex_lock(&mut);
    pi = (pi + demo);
    pthread_mutex_unlock(&mut);
    return NULL;
}

int main(int argc, const char * argv[]) {
    N = atoi(argv[1]);
    T = atoi(argv[2]);
    pthread_t thread[T];
    int x[T];
    for(int i=0;i<T;i++){
        x[i] = i;
        pthread_create(&thread[i], NULL, thread_function, &x[i]);
    }
    for(int i=0;i<T;i++){
        pthread_join(thread[i], NULL);
    }
     pi = 4*pi/N;
     printf("pi is %f",pi);
    exit(0);
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值