NJACKWinterOfCode / algorithms_with_git

A simple collection of algorithms in various languages.
MIT License
15 stars 71 forks source link

Organize repo #30

Closed piedcipher closed 5 years ago

piedcipher commented 5 years ago

Instead of keeping every file in single folder, we can arrange it in folder wise.

For Exmaple -

root/
    algorithms/
        dart/all_dart_files_here
        c++/all_cpp_files_here
        Java/all_java_files_here
        kotlin/all_kotlin_files_here
        ...

OR

root/
    algorithms/
        Dynamic Programming/
        Greedy Problems/
        Sorting/
        Searching/
        ...
aryadas98 commented 5 years ago

I think algorithms should be given preference over languages. One algorithm might be implemented in multiple languages. I like the second option though, we can do that.

aryadas98 commented 5 years ago

Organize the repo into this format and update all the links:

root/
    algorithms/
        Dynamic Programming/
        Greedy Problems/
        Sorting/
        Searching/
        ...
Subhajit25Mondal commented 5 years ago

Which example have you decided to follow. 1st one or the 2nd one ??