-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathBestfit.java
More file actions
103 lines (96 loc) · 4.01 KB
/
Bestfit.java
File metadata and controls
103 lines (96 loc) · 4.01 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
/*
The best fit strategy will not allocate a block of size > N , as it is found in the first-fit method;
instead it will continue searching to find a suitable block so that the block size is closer to the block size of request.
The below program is an implementation of best fit algorithm using array data structure.
*/
import java.util.Scanner;
//Block class is used as the fixed memory blocks for allocation
class Block {
int size;
int ID;
int fragment;
}
// process class is used for allocating memory for the requesting processes
class process {
int Num;
int size;
Block block;
}
class Code {
// initialiseBlocks function initializes all the blocks with sizes and id
void initialiseBlocks(Block arr[], int sizes[], int n) {
for (int i = 0; i < n; i++) {
arr[i].size = sizes[i];
arr[i].fragment = sizes[i];
arr[i].ID = i + 1;
}
}
// printResult function prints the result of the memory allocation strategy
void printResult(process arr2[], int numOfprocess) {
System.out.println(
"Process No Process Size Block ID Block Size Block Fragment\n");
for (int i = 0; i < numOfprocess; i++)
System.out.println(arr2[i].Num + " " + arr2[i].size + " "
+ arr2[i].block.ID + " " + arr2[i].block.size + " "
+ arr2[i].block.fragment + "\n");
}
// bestfit function allocates memory to processes using bestfit allocation algorithm
void bestfit(Block arr[], int sizes[], int n, process arr2[], int numOfprocess) {
initialiseBlocks(arr, sizes, n);
Block minBlock = new Block();
for (int i = 0; i < numOfprocess; i++) {
int min = Integer.MAX_VALUE;
for (int j = 0; j < n; j++) {
if (arr2[i].size <= arr[j].fragment && arr[j].fragment < min) {
min = arr[j].fragment;
minBlock = arr[j];
}
}
minBlock.fragment = minBlock.fragment - arr2[i].size;
arr2[i].block = minBlock;
}
System.out.println("\nBEST FIT ALLOCATION\n");
printResult(arr2, numOfprocess);
}
// Driver code
public static void main(String[] args) {
int sizes[] = { 60, 20, 12, 35, 64, 42, 31, 35, 40, 50 };
Block arr[] = new Block[10];
for (int i = 0; i < 10; i++) {
arr[i] = new Block();
}
Code c = new Code();
c.initialiseBlocks(arr, sizes, 10);
System.out.println("Enter the number of process for memory to be allocated");
int numOfProcess;
Scanner sc = new Scanner(System.in);
numOfProcess = sc.nextInt();
System.out.println("Enter the sizes required by the processes in the order of requirement");
process[] arr2 = new process[numOfProcess];
for (int i = 0; i < numOfProcess; i++) {
arr2[i] = new process();
}
for (int i = 0; i < numOfProcess; i++) {
arr2[i].size = sc.nextInt();
arr2[i].Num = i + 1;
}
sc.close();
c.bestfit(arr, sizes, 10, arr2, numOfProcess);
}
}
/*
Sample I/O:
Enter the number of process for memory to be allocated
5
Enter the sizes required by the processes in the order of requirement
12 11 10 5 23
BEST FIT ALLOCATION
Process No Process Size Block ID Block Size Block Fragment
1 12 3 12 0
2 11 2 20 9
3 10 7 31 21
4 5 2 20 4
5 23 4 35 12
Time complexity : O(n)
space complexity : O(n)
*/