Data Structure and Algorithm (DSA) contributions. Original git found on https://github.com/MakeContributions/DSA/tree/main
 
 
 
 
 
 
Go to file
Ming Tsai 4992bd8d51
Merge pull request #11 from MakeContributions/docs/contribution-guidelines
docs: add contribution-guidelines
2021-01-17 13:02:02 -04:00
searching added jump search in c++ 2021-01-15 18:45:38 +05:30
sorting Added selection sorting algorithm 2021-01-17 16:17:57 +05:30
strings Put initial index in index readme.md 2021-01-14 12:38:38 +05:30
.gitignore Create .gitignore file 2021-01-10 12:08:45 +05:30
CODE_OF_CONDUCT.md docs: create CODE_OF_CONDUCT.md 2020-12-23 10:20:19 -04:00
LICENSE docs(license): add company name on copyright 2020-12-23 10:23:51 -04:00
README.md docs: add to index using relative link 2021-01-17 13:01:48 -04:00

README.md

Data Structures and Algorithm

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(-).
  • 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
  • It can only contain dash(-) it cannot have other specific characters.

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

License

MIT