Ver a proveniência

week6 ex3

master
RinRi há 1 ano
ascendente
cometimento
dd5e44bf05
2 ficheiros alterados com 3 adições e 2 eliminações
  1. +3
    -2
      week06/ex3.c
  2. BIN
      week06/ex3.out

+ 3
- 2
week06/ex3.c Ver ficheiro

@@ -65,8 +65,9 @@ int main() {
jd++;
}
}

for (int i = 0; i < n; ++i) {
if (curt >= p[i].at) {
if (curt >= p[i].at && p[i].used == 0) {
ready[qsz++] = i;
p[i].used = 1;
}
@@ -78,7 +79,7 @@ int main() {

if (qsz == 0) {
for (int i = 0; i < n; ++i) {
if (p[i].used != 0) {
if (p[i].used == 0) {
ready[qsz++] = i;
p[i].used = 1;
curt = p[i].at;


BIN
week06/ex3.out Ver ficheiro


Carregando…
Cancelar
Guardar