A program to find out Covid Stats of Different Countries
using Efficient Algorithms
.
- Longest Increasing Subsequence (LIS).
- Longest Decreasing Subsequence (LDS).
- Knapsack Algorithm.
- Longest Common Subsequence (LCS).
Top 20 Countries
with the most confirmed cases on a given day.Highest New Cases
between two given dates.Longest Spread Period
for a given country (UsedLIS
for this functionality).Longest Daily Death Toll Decrease Period
for a given country (UsedLDS
for this functionality).Highest Possible Score
attainable for aid (UsedKnapsack
for this functionality).Compare the Response
of any two countries against the virus (UsedLCS
for this functionality).
- You can
Change Covid Data
in the file named asWHO-COVID-19.csv
. - You can
Change Weight of Countries
using in knapsack algorithm in the file named asCountryWeight.csv
.