-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJob_sqeunce.c
133 lines (106 loc) · 2.51 KB
/
Job_sqeunce.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
// AIM : TO IMPLEMENT JOB SEQUENCING
#include <stdio.h>
#include<conio.h>
#define MAX 100
typedef struct Job {
char id[5];
int deadline;
int profit;
} Job;
void jobSequencingWithDeadline(Job jobs[], int n);
int minValue(int x, int y) {
if (x < y) return x;
return y;
}
int main(void) {
//variables
int i, j;
//jobs with deadline and profit
Job jobs[5] = {
{"j1", 2, 60},
{"j2", 1, 100},
{"j3", 3, 20},
{"j4", 2, 40},
{"j5", 1, 20},
};
//temp
Job temp;
//number of jobs
int n = 5;
//sort the jobs profit wise in descending order
for (i = 1; i < n; i++) {
for (j = 0; j < n - i; j++) {
if (jobs[j + 1].profit > jobs[j].profit) {
temp = jobs[j + 1];
jobs[j + 1] = jobs[j];
jobs[j] = temp;
}
}
}
printf("%10s %10s %10s\n", "Job", "Deadline", "Profit");
for (i = 0; i < n; i++) {
printf("%10s %10i %10i\n", jobs[i].id, jobs[i].deadline, jobs[i].profit);
}
jobSequencingWithDeadline(jobs, n);
getch();
return 0;
}
void jobSequencingWithDeadline(Job jobs[], int n) {
//variables
int i, j, k, maxprofit;
//free time slots
int timeslot[MAX];
//filled time slots
int filledTimeSlot = 0;
//find max deadline value
int dmax = 0;
for (i = 0; i < n; i++) {
if (jobs[i].deadline > dmax) {
dmax = jobs[i].deadline;
}
}
//free time slots initially set to -1 [-1 denotes EMPTY]
for (i = 1; i <= dmax; i++) {
timeslot[i] = -1;
}
printf("dmax: %d\n", dmax);
for (i = 1; i <= n; i++) {
k = minValue(dmax, jobs[i - 1].deadline);
while (k >= 1) {
if (timeslot[k] == -1) {
timeslot[k] = i - 1;
filledTimeSlot++;
break;
}
k--;
}
//if all time slots are filled then stop
if (filledTimeSlot == dmax) {
break;
}
}
//required jobs
printf("\nRequired Jobs: ");
for (i = 1; i <= dmax; i++) {
printf("%s", jobs[timeslot[i]].id);
if (i < dmax) {
printf(" --> ");
}
}
//required profit
maxprofit = 0;
for (i = 1; i <= dmax; i++) {
maxprofit += jobs[timeslot[i]].profit;
}
printf("\nMax Profit: %d\n", maxprofit);
}
// Output:
// Job Deadline Profit
// j2 1 100
// j1 2 60
// j4 2 40
// j3 3 20
// j5 1 20
// dmax: 3
// Required Jobs : j2-- > j1-- > j3
// Max Profit : 180