pi1.c: 使用2个线程根据莱布尼兹级数计算PI
• 莱布尼兹级数公式: 1 - 1/3 + 1/5 - 1/7 + 1/9 - ... = PI/4
• 主线程创建1个辅助线程
• 主线程计算级数的前半部分
• 辅助线程计算级数的后半部分
• 主线程等待辅助线程运行結束后,将前半部分和后半部分相加
实现思路:
用全局变量存储主线程和副线程中的计算结果,然后将结果相加*4即得到结果。
#include<stdio.h>
#include<unistd.h>
#include<pthread.h>#define NUMBER 200double PI;
double worker_output;
double master_output;void *worker(void *arg){int i;double j;worker_output=0;for(i=1;i<=NUMBER;i++){j=i;if(i%2==0)worker_output-=1/(2*j-1);elseworker_output+=1/(2*j-1);}return NULL;
}void master(){int i=NUMBER+1;double j;master_output=0;for(;i<=2*NUMBER;i++){j=i;if(i%2==0)master_output-=1/(2*j-1);elsemaster_output+=1/(2*j-1);}
}int main(){pthread_t worker_tid;pthread_create(&worker_tid,NULL,worker,NULL);master();pthread_join(worker_tid,NULL);PI=(worker_output+master_output)*4;printf("PI: %f\n",PI);return 0;
}
欢迎留言交流。。。