2020-12-17 03:18:20 +00:00
|
|
|
# Data Structures and Algorithm
|
2021-01-15 13:52:11 +00:00
|
|
|
Data structure and Algorithm (DSA)
|
|
|
|
|
|
|
|
## Contribution Guidelines
|
|
|
|
### 1. Folders or files naming
|
|
|
|
The folder or file should have the below conditions:
|
|
|
|
- The name should be in lower case.
|
|
|
|
- The word should be separate with a **dash(-)**.
|
2021-01-17 17:01:48 +00:00
|
|
|
- When have new topic should create a new folder and index for it.
|
|
|
|
- A new file should add to the **index(README.md)** using [relative links](https://compugoddess.com/relative-vs-absolute-links/)
|
2021-01-15 13:52:11 +00:00
|
|
|
- It can only contain **dash(-)** it cannot have other specific characters.
|
2021-01-15 13:54:49 +00:00
|
|
|
|
2021-01-15 13:52:11 +00:00
|
|
|
For example:
|
|
|
|
```
|
|
|
|
DSA
|
|
|
|
| searching
|
|
|
|
| readme.md -> should create an readme for the index
|
|
|
|
| c-or-cpp
|
|
|
|
| linear-search.cpp
|
|
|
|
| binary-search.cpp
|
|
|
|
| python
|
|
|
|
| linear-search.py
|
|
|
|
| binary-search.py
|
|
|
|
| csharp
|
|
|
|
| linear-search.cs
|
|
|
|
| binary-search.cs
|
|
|
|
```
|
|
|
|
### 2. Naming Convention
|
|
|
|
The programming should keep the naming convention rule of each programming language
|
2020-12-23 14:22:49 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
[MIT](./LICENSE)
|