-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemmoryallocation.c
161 lines (158 loc) · 3.46 KB
/
memmoryallocation.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
152
153
154
155
156
157
158
159
160
161
#include<stdio.h>
struct process
{
int pid;
int size;
int allocated;
};
struct block
{
int bid;
int size;
int allocated;
};
void firstfit(struct process po[],struct block bo[],int n, int m)
{
struct process p[10];
struct block b[10];
for(int i=0;i<n;i++)
{
p[i]=po[i];
}
for(int i=0;i<m;i++)
{
b[i]=bo[i];
}
printf("\nFirst Fit\n");
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(p[i].size<=b[j].size && b[j].allocated==0)
{
b[j].allocated=1;
p[i].allocated=1;
printf("Process P%d is allocated to Block B%d\n",p[i].pid,b[j].bid);
break;
}
}
if(p[i].allocated==0)
{
printf("Process P%d is not allocated\n",p[i].pid);
}
}
}
void bestfit(struct process po[],struct block bo[],int n, int m)
{
struct process p[10];
struct block b[10];
for(int i=0;i<n;i++)
{
p[i]=po[i];
}
for(int i=0;i<m;i++)
{
b[i]=bo[i];
}
printf("\nBest Fit\n");
for(int i=0;i<m-1;i++)
{
for(int j=i+1;j<m;j++)
{
if(b[i].size>b[j].size)
{
struct block temp=b[i];
b[i]=b[j];
b[j]=temp;
}
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(p[i].size<=b[j].size && b[j].allocated==0)
{
b[j].allocated=1;
p[i].allocated=1;
printf("Process P%d is allocated to Block B%d\n",p[i].pid,b[j].bid);
break;
}
}
if(p[i].allocated==0)
{
printf("Process P%d is not allocated\n",p[i].pid);
}
}
}
void worstfit(struct process po[],struct block bo[],int n, int m)
{
struct process p[10];
struct block b[10];
for(int i=0;i<n;i++)
{
p[i]=po[i];
}
for(int i=0;i<m;i++)
{
b[i]=bo[i];
}
printf("\nWorst Fit\n");
for(int i=0;i<m-1;i++)
{
for(int j=i+1;j<m;j++)
{
if(b[i].size<b[j].size)
{
struct block temp=b[i];
b[i]=b[j];
b[j]=temp;
}
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(p[i].size<=b[j].size && b[j].allocated==0)
{
b[j].allocated=1;
p[i].allocated=1;
printf("Process P%d is allocated to Block B%d\n",p[i].pid,b[j].bid);
break;
}
}
if(p[i].allocated==0)
{
printf("Process P%d is not allocated\n",p[i].pid);
}
}
}
int main()
{
int n,m;
struct process p[10];
struct block b[10];
printf("Enter the number of processes: ");
scanf("%d",&n);
printf("Enter the number of blocks: ");
scanf("%d",&m);
for(int i=0;i<n;i++)
{
p[i].pid=i+1;
printf("Enter the size of process P%d: ",i+1);
scanf("%d",&p[i].size);
p[i].allocated=0;
}
for(int i=0;i<m;i++)
{
b[i].bid=i+1;
printf("Enter the size of block B%d: ",i+1);
scanf("%d",&b[i].size);
b[i].allocated=0;
}
firstfit(p,b,n,m);
bestfit(p,b,n,m);
worstfit(p,b,n,m);
return 0;
}