-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
91 lines (77 loc) · 2.5 KB
/
main.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct fila {
int tempo_chegada;
int tempo_necessario;
struct fila *next;
};
void adicionando(struct fila **head, struct fila **tail, int a, int b);
int isEmpty(struct fila *head);
int main()
{
struct fila *head = NULL;
struct fila *tail = NULL;
int tempo_espera = 0, tempo_resposta = 0, tempo_ativo = 0, tempo_chegada = 0, tempo_necessario = 0, quant_processos, total = 0, contador = 0, quantum = 0;
float media_espera, media_resposta, media_ativo;
scanf("%d %d", &quant_processos, &quantum);
for (int i = 0; i < quant_processos; i++) {
scanf("%d %d", &tempo_chegada, &tempo_necessario);
adicionando(&head, &tail, tempo_chegada, tempo_necessario);
}
int processos = quant_processos;
struct fila *aux = head;
while (processos != 0) {
if (aux->tempo_necessario <= quantum && aux->tempo_necessario > 0) {
total = total + aux->tempo_necessario;
aux->tempo_necessario = 0;
contador = 1;
}
else if (aux->tempo_necessario > 0) {
aux->tempo_necessario = aux->tempo_necessario - quantum;
total = total + quantum;
}
if (aux->tempo_necessario == 0 && contador == 1) {
tempo_espera += total - aux->tempo_chegada - aux->tempo_chegada;
tempo_resposta += total - aux->tempo_chegada;
tempo_ativo += total;
contador = 0;
processos--;
}
if (aux->next == NULL) {
aux = head;
}
else if (head->next->tempo_chegada <= total) {
aux = aux->next;
}
else {
aux = head;
}
}
media_espera = tempo_espera * 1.0 / quant_processos;
media_resposta = tempo_resposta * 1.0 / quant_processos;
media_ativo = tempo_ativo *1.0 / quant_processos;
printf("\nRR %.1f %.1f %.1f", media_ativo, media_resposta, media_espera);
return 0;
}
void adicionando(struct fila **head, struct fila **tail, int a, int b)
{
struct fila *novo = (struct fila *)malloc(sizeof(struct fila));
if(novo != NULL){
novo-> tempo_chegada = a;
novo -> tempo_necessario = b;
novo->next = NULL;
if(isEmpty(*head)){
*head = novo;
*tail = novo;
}
else {
(*tail)->next = novo;
*tail = novo;
}
}
}
int isEmpty(struct fila *head)
{
return head == NULL;
}