-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20150707.java
158 lines (133 loc) · 4.02 KB
/
20150707.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//TRABALHO 13
import java.util.concurrent.locks.*;
public class MCS extends Thread {
static final int qtdFichas = 10;
static Lock[] locks;
static Thread[] threads;
static final int numThreads = 5;
int id;
public MCS(int d) {id=d;}
public static void main(String [] args){
locks = new ReentrantLock[qtdFichas*numThreads];
for(int i = 0; i < qtdFichas*numThreads; i++){
locks[i] = new ReentrantLock();
}
threads = new MCS[numThreads];
for(int i = 0; i < numThreads; i++) {
threads[i] = new MCS(i);
}
for(int i = 0; i < numThreads; i++) {
threads[i].start();
}
}
public int obterFicha(int cont){
while(!locks[cont].tryLock()) cont++;
System.out.println("thread " + id + " got ticket " + cont);
return cont++;
}
public void run() {
int cont = 0;
for(int i = 0; i < qtdFichas; i++) {
obterFicha(cont);
}
}
}
//TRABALHO 14
import java.util.concurrent.locks.*;
public class CSM {
static Mulher[] mulheres;
static Homem[] homens;
static final int qtdMulher = 30;
static final int qtdHomem = 30;
public static int abs(int a){
if(a < 0) return -1*a; else return a;
}
public static void main(String[] args) {
mulheres = new Mulher[qtdMulher];
homens = new Homem[qtdHomem];
for(int i = 0; i < qtdMulher; i++) mulheres[i] = new Mulher();
for(int i = 0; i < qtdHomem; i++) homens[i] = new Homem();
for(int i = 0; i < qtdMulher; i++) mulheres[i].start();
for(int i = 0; i < qtdHomem; i++) homens[i].start();
for(int i = 0; i < qtdMulher; i++) {
try{mulheres[i].join();} catch(Exception e){}
}
for(int i = 0; i < qtdHomem; i++) {
try{homens[i].join();} catch(Exception e){}
}
}
}
class Mulher extends Thread {
public void entrarMulher() {
Banheiro.ocupar(false);
}
public void sairMulher() {
Banheiro.desocupar(false);
}
public void run() {
entrarMulher();
try{this.sleep(2);} catch(Exception e){}
sairMulher();
}
}
class Homem extends Thread {
public void entrarHomem() {
Banheiro.ocupar(true);
}
public void sairHomem() {
Banheiro.desocupar(true);
}
public void run() {
entrarHomem();
sairHomem();
}
}
class Banheiro {
static volatile int qtdPessoas = 0;
static volatile boolean fullHomem = false;
static volatile boolean fullMulher = false;
static final int limit = 5;
static int counter = 0;
static ReentrantLock lock = new ReentrantLock();
static Condition ocupado = lock.newCondition();
public static void ocupar(boolean isHomem) {
lock.lock();
while((isHomem && qtdPessoas < 0) || (fullHomem)) {
try{ocupado.await();} catch(Exception e){}
}
while((!isHomem && qtdPessoas > 0) || (fullMulher)) {
try{ocupado.await();} catch(Exception e){}
}
if(isHomem) {
System.out.println("Entrou homem " + (qtdPessoas+1));
qtdPessoas++;
counter++;
if(counter == limit) fullHomem = true;
}
else {
System.out.println("Entrou mulher" + (qtdPessoas-1));
qtdPessoas--;
counter++;
if(counter == limit) fullMulher = true;
}
lock.unlock();
}
public static void desocupar(boolean isHomem){
lock.lock();
if(isHomem) {
System.out.println("Saiu homem " + (qtdPessoas-1));
qtdPessoas--;
}
else {
System.out.println("Saiu mulher " + (qtdPessoas+1));
qtdPessoas++;
}
if(qtdPessoas == 0) {
counter = 0;
ocupado.signalAll();
fullHomem = false;
fullMulher = false;
}
lock.unlock();
}
}