https://github.com/akazad13/competitive-programming
This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & data structure theoretical coding, solution of different online judge's problems and supplementary topics.
https://github.com/akazad13/competitive-programming
Last synced: 6 months ago
JSON representation
This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & data structure theoretical coding, solution of different online judge's problems and supplementary topics.
- Host: GitHub
- URL: https://github.com/akazad13/competitive-programming
- Owner: akazad13
- License: mit
- Created: 2021-04-06T17:28:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-03T10:17:21.000Z (about 1 year ago)
- Last Synced: 2025-02-14T18:20:55.929Z (8 months ago)
- Language: C++
- Size: 354 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Competitive Programming
This repository contains all the codes and programs of my competitive programming life. This includes Algorithm & and data structure theoretical coding, solutions to different online judge's problems, and supplementary topics.Checklist:
1. Can I solve the sub-problem of that problem?
2. Can I solve the whole problem?
3. Do I check the parameter?
4. Did I clear all the memory?
5. check whether DP is cleared
6. Understand the prob?! check again!!!## Table of Contents
### Algorithms and Data Structures
#### Sorting
- [Counting Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Counting%20Sort)
- [Radix Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Radix%20Sort)
- [Merge Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Merge%20Sort)
- [Quick Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Quick%20Sort)
- [Heap Sort](https://github.com/akazad13/competitive-programming/tree/main/Algorithms%20%26%20Data%20Structure/Sorting/Heap%20Sort)