TheAlgorithms-C-Plus-Plus/README.md
2018-10-04 00:58:53 +05:30

15 lines
462 B
Markdown

# C++
This repository contains some useful algorithms and data structures.
### Contribute
How you can contribute? See this small guide.
* Use the directory structure of the repository.
* Please describe your pull requests.
* Don't use **bits/stdc++.h** because this is quite Linux specific and slows down the compiler process.
* Put comments in your code.
* Avoid **struct**. Instead use the **class** keyword.
* Add some test cases in the main-function.