https://github.com/prakashupes/competitiveprogramming
Competitive Programming This repo contains many important concepts of Data Structures, Algorithms, String Manipulation, Pointers,Hashing implemented in c++.
https://github.com/prakashupes/competitiveprogramming
algorithms disjoint-sets graph hashing maths pointers recurs string-manipulation
Last synced: 7 months ago
JSON representation
Competitive Programming This repo contains many important concepts of Data Structures, Algorithms, String Manipulation, Pointers,Hashing implemented in c++.
- Host: GitHub
- URL: https://github.com/prakashupes/competitiveprogramming
- Owner: prakashupes
- Created: 2019-10-06T17:05:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-13T04:25:59.000Z (about 4 years ago)
- Last Synced: 2025-01-13T20:25:27.179Z (9 months ago)
- Topics: algorithms, disjoint-sets, graph, hashing, maths, pointers, recurs, string-manipulation
- Language: C++
- Homepage:
- Size: 11.9 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Competitive Programming
This repo contains many important concepts of Data Structures, Algorithms, String Manipulation, Pointers,Hashing,Disjoint sets and some codes of CPPCON (Google) implemented in c++.### Guidelines:
>1. Fork and clone to your sytem.
>2. You must configure a remote that points to the upstream repository in Git to sync changes you make in a fork with the [original repository](https://github.com/prakashupes/CompetitiveProgramming.git). This also allows you to sync changes made in the original repository with the fork.Commands:
```
git remote -v
```
```
git remote add upstream https://github.com/prakashupes/CompetitiveProgramming.git
```
```
git fetch upstream
```
```
git merge upstream/master
```