-
Notifications
You must be signed in to change notification settings - Fork 17
/
look.c
96 lines (75 loc) · 1.93 KB
/
look.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
92
93
94
95
96
/*
LOOK Algorithm
- Heads move in only one direction until there are no
more requests in that direction, then the direction
is reversed.
*/
#include <stdio.h>
#include <stdlib.h>
#define LOW 0
#define HIGH 199
int main(){
int queue[20], head, q_size, i,j, seek=0, diff, max, temp, queue1[20], queue2[20], temp1=0, temp2=0;
float avg;
printf("%s\t", "Input the number of disk locations");
scanf("%d", &q_size);
printf("%s\t", "Enter initial head position");
scanf("%d", &head);
printf("%s\n", "Enter disk positions to read");
for(i=0; i<q_size; i++){
scanf("%d", &temp);
//queue1 - elems greater than head
if(temp >= head){
queue1[temp1] = temp;
temp1++;
} else {
queue2[temp2] = temp;
temp2++;
}
}
//sort queue1 - increasing order
for(i=0; i<temp1-1; i++){
for(j=i+1; j<temp1; j++){
if(queue1[i] > queue1[j]){
temp = queue1[i];
queue1[i] = queue1[j];
queue1[j] = temp;
}
}
}
//sort queue2 - decreasing order
for(i=0; i<temp2-1; i++){
for(j=i+1; j<temp2; j++){
if(queue2[i] < queue2[j]){
temp = queue2[i];
queue2[i] = queue2[j];
queue2[j] = temp;
}
}
}
if(abs(head-LOW) >= abs(head-HIGH)){
for(i=1,j=0; j<temp1; i++,j++){
queue[i] = queue1[j];
}
for(i=temp1+1, j=0; j<temp2; i++, j++){
queue[i] = queue2[j];
}
} else {
for(i=1,j=0; j<temp2; i++,j++){
queue[i] = queue2[j];
}
for(i=temp2+1, j=0; j<temp1; i++, j++){
queue[i] = queue1[j];
}
}
queue[0] = head;
for(j=0; j<q_size; j++){
diff=abs(queue[j+1] - queue[j]);
seek += diff;
printf("Disk head moves from %d to %d with seek %d\n",queue[j],queue[j+1],diff);
}
printf("Total seek time is %d\n", seek);
avg = seek/(float)q_size;
printf("Average seek time is %f\n", avg);
return 0;
}