14 lines
463 B
Markdown
Raw Normal View History

2017-12-27 13:43:39 +01:00
# C++
2017-12-27 13:42:48 +01:00
This repository contains some useful algorithms and data structures.
### Contribute
How you can contribute? See this small guide.
2017-12-27 13:47:42 +01:00
* Use the directory structure of the repository.
2017-12-27 13:42:48 +01:00
* Please describe your pull requests.
* Don't use **bits/stdc++.h** because this is quite Linux specific and slow down the compiler process.
* Put in comments in your code.
* Avoid **struct** uses instead the **class** keyword.
2017-12-27 13:47:42 +01:00
* Add some test cases in the main-function.