-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6_Variable_Partition_First_Best_Worst_Fit.c
More file actions
176 lines (159 loc) · 4.64 KB
/
Copy path6_Variable_Partition_First_Best_Worst_Fit.c
File metadata and controls
176 lines (159 loc) · 4.64 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
Enter The No. of Blocks : 2
Enter The size of each block1 :150 350
Enter The No. of Process : 4
Enter The size of each Process :300 25 125 50
MEMORY ALLOCATION FOR VARIABLE SIZE PARTITIONING :
First Fit:
Process No. Process Size Block no.
1 300 2
2 25 1
3 125 1
4 50 2
INTERNAL FRAGMENTATION : 0 KB
EXTERNAL FRAGMENTATION : 0 KB
Best Fit:
Process No. Process Size Block no.
1 300 2
2 25 2
3 125 1
4 50 Not Allocated
INTERNAL FRAGMENTATION : 50 KB
EXTERNAL FRAGMENTATION : 50 KB
Worst Fit:
Process No. Process Size Block no.
1 300 2
2 25 1
3 125 1
4 50 2
INTERNAL FRAGMENTATION : 0 KB
EXTERNAL FRAGMENTATION : 0 KB
*/
#include <stdio.h>
#include <string.h>
void print_memory(int allocation[],int process[], int n)
{
printf("\nProcess No.\tProcess Size\tBlock no.\n");
for (int i = 0; i < n; i++)
{
printf(" %d\t\t%d\t\t", i + 1, process[i]);
if (allocation[i] != -1)
printf("%d", allocation[i] + 1);
else
printf("Not Allocated");
printf("\n");
}
}
void First_Fit(int block[], int m, int process[], int n)
{
int block1[m],IF=0,EF=0;
for(int i=0; i<m ;i++) block1[i]=block[i];
int allocation[n];
memset(allocation, -1, sizeof(allocation));
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if (block1[j] >= process[i])
{
allocation[i] = j;
block1[j] -= process[i];
break;
}
}
if(allocation[i]==-1) EF+=process[i];
}
for(int i=0 ; i<m ; i++){
if(block1[i]!=block[i] && block1[i]!=0) IF+=block1[i];
}
print_memory(allocation,process,n);
printf("INTERNAL FRAGMENTATION : %d KB\n",IF);
printf("EXTERNAL FRAGMENTATION : %d KB\n",EF);
}
void Best_Fit(int block[], int m, int process[], int n)
{
int block1[m],IF=0,EF=0;
for(int i=0; i<m ;i++) block1[i]=block[i];
int allocation[n];
memset(allocation, -1, sizeof(allocation));
for (int i = 0; i < n; i++)
{
int bestIdx = -1;
for (int j = 0; j < m; j++)
{
if (block1[j] >= process[i])
{
if (bestIdx == -1)
bestIdx = j;
else if (block1[bestIdx] > block1[j])
bestIdx = j;
}
}
if (bestIdx != -1)
{
allocation[i] = bestIdx;
block1[bestIdx] -= process[i];
}
if(allocation[i]==-1) EF+=process[i];
}
for(int i=0 ; i<m ; i++){
if(block1[i]!=block[i]&& block1[i]!=0) IF+=block1[i];
}
print_memory(allocation,process,n);
printf("INTERNAL FRAGMENTATION : %d KB\n",IF);
printf("EXTERNAL FRAGMENTATION : %d KB\n",EF);
}
void Worst_Fit(int block[], int m, int process[], int n)
{
int block1[m],IF=0,EF=0;
for(int i=0; i<m ;i++) block1[i]=block[i];
int allocation[n];
memset(allocation, -1, sizeof(allocation));
for (int i = 0; i < n; i++)
{
int worstIdx = -1;
for (int j = 0; j < m; j++)
{
if (block1[j] >= process[i])
{
if (worstIdx == -1)
worstIdx = j;
else if (block1[worstIdx] < block1[j])
worstIdx = j;
}
}
if (worstIdx != -1){
allocation[i] = worstIdx;
block1[worstIdx] -= process[i];
}
if(allocation[i]==-1) EF+=process[i];
}
for(int i=0 ; i<m ; i++){
if(block1[i]!=block[i]&& block1[i]!=0) IF+=block1[i];
}
print_memory(allocation,process,n);
printf("INTERNAL FRAGMENTATION : %d KB\n",IF);
printf("EXTERNAL FRAGMENTATION : %d KB\n",EF);
}
int main()
{
int m,n;
printf("Enter The No. of Blocks : ");
scanf("%d",&m);
int block[m];
printf("Enter The size of each block1 :");
for(int i=0 ;i<m ;i++) scanf("%d",&block[i]);
printf("Enter The No. of Process : ");
scanf("%d",&n);
int process[n];
printf("Enter The size of each Process :");
for(int i=0 ;i<n ;i++) scanf("%d",&process[i]);
printf("MEMORY ALLOCATION FOR VARIABLE SIZE PARTITIONING : \n");
printf("First Fit:\n");
First_Fit(block, m, process, n);
printf("\nBest Fit:\n");
Best_Fit(block, m, process, n);
printf("\nWorst Fit:\n");
Worst_Fit(block, m, process, n);
return 0;
}