https://github.com/sameetasadullah/covid-stats-algorithms
A program to find out covid stats of different countries using efficient algorithms i.e, Knapsack, Longest Common Subsequence (LCS), Longest Decreasing Subsequence (LDS) etc
https://github.com/sameetasadullah/covid-stats-algorithms
algorithms covid19-data covid19-tracker cpp knapsack longest-common-subsequence longest-decreasing-subsequence longest-increasing-subsequence visual-studio
Last synced: 29 days ago
JSON representation
A program to find out covid stats of different countries using efficient algorithms i.e, Knapsack, Longest Common Subsequence (LCS), Longest Decreasing Subsequence (LDS) etc
- Host: GitHub
- URL: https://github.com/sameetasadullah/covid-stats-algorithms
- Owner: SameetAsadullah
- License: mit
- Created: 2022-08-07T21:38:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-07T22:26:50.000Z (almost 4 years ago)
- Last Synced: 2026-01-02T23:16:09.073Z (6 months ago)
- Topics: algorithms, covid19-data, covid19-tracker, cpp, knapsack, longest-common-subsequence, longest-decreasing-subsequence, longest-increasing-subsequence, visual-studio
- Language: C++
- Homepage:
- Size: 15.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Covid Statistics Algorithms
### Description
A program to find out `Covid Stats of Different Countries` using `Efficient Algorithms`.
### Algorithms
- Longest Increasing Subsequence (LIS).
- Longest Decreasing Subsequence (LDS).
- Knapsack Algorithm.
- Longest Common Subsequence (LCS).
### Functionalities
- `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 (Used `LIS` for this functionality).
- `Longest Daily Death Toll Decrease Period` for a given country (Used `LDS` for this functionality).
- `Highest Possible Score` attainable for aid (Used `Knapsack` for this functionality).
- `Compare the Response` of any two countries against the virus (Used `LCS` for this functionality).
### Manual
1) You can `Change Covid Data` in the file named as `WHO-COVID-19.csv`.
2) You can `Change Weight of Countries` using in knapsack algorithm in the file named as `CountryWeight.csv`.
### Working Screenshots