An open API service indexing awesome lists of open source software.

https://github.com/yorgosbas/activity-selection-algorithm

Given a set of activities with specific time period,this algorithm finds the maximum activities that can be performed
https://github.com/yorgosbas/activity-selection-algorithm

activity activityselectionproblem algorithms problem selection

Last synced: about 2 months ago
JSON representation

Given a set of activities with specific time period,this algorithm finds the maximum activities that can be performed

Awesome Lists containing this project

README

        

# Activity Selection Algorithm
Given a set of activities with specific time period,this algorithm finds the maximum activities that can be performed in that specific time period

# Tests
| Activity # | Start | Finish |
| --- | --- | --- |
| 1 | 18 | 20 |
| 2 | 19 | 20 |
| 3 | 20 | 21 |
| 4 | 22 | 23 |
| 5 | 18 | 19 |
| 6 | 19 | 23 |

### Result
`Maximum Number of Activities : 3 at time 19-20`