-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1114.Print-in-Order.java
40 lines (33 loc) · 981 Bytes
/
1114.Print-in-Order.java
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
// https://leetcode.com/problems/print-in-order/
//
// algorithms
// Easy (58.2%)
// Total Accepted: 692
// Total Submissions: 1,189
// beats 100.0% of java submissions
class Foo {
private volatile int flag;
public Foo() {
}
public void first(Runnable printFirst) throws InterruptedException {
// printFirst.run() outputs "first". Do not change or remove this line.
printFirst.run();
flag++;
}
public void second(Runnable printSecond) throws InterruptedException {
while (flag == 0) {
continue;
}
// printSecond.run() outputs "second". Do not change or remove this line.
printSecond.run();
flag++;
}
public void third(Runnable printThird) throws InterruptedException {
while (flag < 2) {
continue;
}
// printThird.run() outputs "third". Do not change or remove this line.
printThird.run();
flag++;
}
}