-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory_allocation.c
151 lines (151 loc) · 2.74 KB
/
memory_allocation.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
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
#include<stdio.h>
#include<stdlib.h>
struct block
{
int size;
int allocated;
}b[10],temp;
struct process
{
int pid;
int size;
int blocksize;
}p[20];
int bn,pn,i,j;
void display()
{
printf("\n");
printf("PID PROCESS_SIZE BLOCKSIZE");
printf("\n");
for(i=0;i<pn;i++)
{
if(p[i].blocksize==-1)
{
printf("%d %d not allocated\n",p[i].pid,p[i].size);
}
else
{
printf("%d %d %d\n",p[i].pid,p[i].size,p[i].blocksize);
}
}
printf("\n");
}
void firstfit()
{
printf("\n FIRST FIT\n");
for(i=0;i<bn;i++)
{
b[i].allocated=-1;
}
for(i=0;i<pn;i++)
{
p[i].blocksize=-1;
}
for(i=0;i<pn;i++)
{
for(j=0;j<bn;j++)
{
if(b[j].allocated==-1 && b[j].size>=p[j].size)
{
p[i].blocksize=b[j].size;
b[j].allocated=1;
break;
}
}
}
display();
}
void bestfit()
{
printf("\n BEST FIT\n");
for(i=0;i<bn-1;i++)
{
for(j=0;j<bn-i-1;j++)
{
if(b[j].size>b[j+1].size)
{
temp=b[j];
b[j]=b[j+1];
b[j+1]=temp;
}
}
}
for(i=0;i<bn;i++)
{
b[i].allocated=-1;
}
for(i=0;i<pn;i++)
{
p[i].blocksize=-1;
}
for(i=0;i<pn;i++)
{
for(j=0;j<bn;j++)
{
if(b[j].allocated==-1 && b[j].size>=p[i].size)
{
p[i].blocksize=b[j].size;
b[j].allocated=1;
}
}
}
display();
}
void worstfit()
{
printf("\n WORST FIT\n");
for(i=0;i<bn-1;i++)
{
for(j=0;j<bn-i-1;j++)
{
if(b[j].size<b[j+1].size)
{
temp=b[j];
b[j]=b[j+1];
b[j+1]=temp;
}
}
}
for(i=0;i<bn;i++)
{
b[i].allocated=-1;
}
for(i=0;i<pn;i++)
{
p[i].blocksize=-1;
}
for(i=0;i<pn;i++)
{
for(j=0;j<bn;j++)
{
if(b[j].allocated==-1 && b[j].size>=p[i].size)
{
p[i].blocksize=b[j].size;
b[j].allocated=1;
break;
}
}
}
display();
}
void main()
{
printf("Enter the number of blocks:");
scanf("%d",&bn);
for(i=0;i<bn;i++)
{
printf("Enter the size of block %d:",i+1);
scanf("%d",&b[i].size);
}
printf("Enter the number of process:");
scanf("%d",&pn);
for(i=0;i<pn;i++)
{
printf("Enter the size of process %d:",i+1);
scanf("%d",&p[i].size);
p[i].pid=i+1;
}
firstfit();
bestfit();
worstfit();
}