forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_selection.js
39 lines (35 loc) · 1.17 KB
/
activity_selection.js
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
/*
The problem statement for Activity Selection is that "Given a set of n activities with their start and finish times, we need to select maximum number of non-conflicting activities that can be performed by a single person, given that the person can handle only one activity
at a time." The Activity Selection problem follows a Greedy approach.
*/
// Function to compute the activities to be chosen
var activitySelection = function(start, finish, length)
{
i = 0;
console.log( i + " ");
// if start time of current activity j is greater than or equal to previous activity chosen, select activity j
for (var j = 1; j < length; j++)
{
if (start[j] >= finish[i])
{
console.log( j + " ");
i = j;
}
}
}
// The array of n elements where start[i] denotes starting time of ith activity
var start = [1, 3, 1, 5, 6, 8];
// The array of n elements where finish[i] denotes finishing time of ith activity
var finish = [2, 6, 6, 7, 8, 10];
// Call to activitySelection function
activitySelection(start, finish, start.length);
/*
Input:
Start
1 3 1 5 6 8
Finish
2 6 6 7 8 10
Output:
Following activities are selected
0 1 4 5
*/