Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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 days ago
JSON representation

Competitive Programming This repo contains many important concepts of Data Structures, Algorithms, String Manipulation, Pointers,Hashing implemented in c++.

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
```