-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdining-philosophers.cpp
71 lines (52 loc) · 1.41 KB
/
dining-philosophers.cpp
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//https://leetcode.com/problems/the-dining-philosophers/description/
#include <mutex>
using namespace std;
class Semaphore {
public:
Semaphore() {}
Semaphore(int c) : count(c) {}
void setCount(int a) {
count = a;
}
inline void signal() {
unique_lock<mutex> lock(mtx);
count++;
if (count <= 0) {
cv.notify_all();
}
}
inline void wait() {
unique_lock<mutex> lock(mtx);
count--;
while (count < 0) {
cv.wait(lock);
}
}
private:
mutex mtx;
condition_variable cv;
int count;
};
class DiningPhilosophers {
public:
Semaphore fork[5];
mutex m;
condition_variable cv;
DiningPhilosophers() {
for (int i=0; i<5; i++) {
fork[i].setCount(1);
}
}
void wantsToEat(int philosopher, function<void()> pickLeftFork, function<void()> pickRightFork, function<void()> eat, function<void()> putLeftFork, function<void()> putRightFork) {
lock_guard<mutex> lock(m);
fork[(philosopher + 1) % 5].wait();
fork[philosopher].wait();
pickLeftFork();
pickRightFork();
eat();
putLeftFork();
fork[(philosopher + 1) % 5].signal();
putRightFork();
fork[philosopher].signal();
}
};