dining-philosophers:餐饮哲学家问题的另一种解决方案

时间:2024-06-10 23:36:17
【文件属性】:

文件名称:dining-philosophers:餐饮哲学家问题的另一种解决方案

文件大小:7KB

文件格式:ZIP

更新时间:2024-06-10 23:36:17

C

它使用带有信号量和互斥量的导体解决方案。 您可以确定要吃的哲学家的数量(最小= 3,最大= 999,默认= 5)。它打印当前状态,并在所有哲学家都吃完之后停止工作。 之后显示统计信息。 编译: gcc -pthread -o philutku2 philutku2.c 执行: ./philutku2 number_of_philosophers 示例: ./philutku2 10 输出: Statistics: Philosopher 1 eaten for 2 times Philosopher 2 eaten for 1 times Philosopher 3 eaten for 1 times Philosopher 4 eaten for 2 times Philosopher 5 eaten for 3 times Philosopher 6 eaten for 1 ti


【文件预览】:
dining-philosophers-master
----philutku2.c(7KB)
----LICENSE(11KB)
----README.md(773B)

网友评论