diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..dfe07704 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.idea/AlgorithmsAndDataStructure.iml b/.idea/AlgorithmsAndDataStructure.iml new file mode 100644 index 00000000..d0876a78 --- /dev/null +++ b/.idea/AlgorithmsAndDataStructure.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..55aa1a6a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..eac332b1 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + 1588310776642 + + + + \ No newline at end of file diff --git a/Algorithms/BackTracking/__init__.py b/Algorithms/BackTracking/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/DeepLearningAlgorithms/__init__.py b/Algorithms/DeepLearningAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/DivideAndConquer/__init__.py b/Algorithms/DivideAndConquer/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/DynamicPrograming/__init__.py b/Algorithms/DynamicPrograming/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/GreedyAlgorithms/__init__.py b/Algorithms/GreedyAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/MachineLearningAlgorithms/__init__.py b/Algorithms/MachineLearningAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/PathFindingAlgorithms/__init__.py b/Algorithms/PathFindingAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/RecursionAlgorithms/__init__.py b/Algorithms/RecursionAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/SearchingAlgorithms/__init__.py b/Algorithms/SearchingAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/SortingAlgorithms/__init__.py b/Algorithms/SortingAlgorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/Algorithms/__init__.py b/Algorithms/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/DataStructure/LinkedListDS/App.py b/DataStructure/LinkedListDS/App.py new file mode 100644 index 00000000..e69de29b diff --git a/DataStructure/LinkedListDS/LinkedList.py b/DataStructure/LinkedListDS/LinkedList.py new file mode 100644 index 00000000..9cbbcdb1 --- /dev/null +++ b/DataStructure/LinkedListDS/LinkedList.py @@ -0,0 +1 @@ +from DataStructure.LinkedListDS.Node import Node \ No newline at end of file diff --git a/DataStructure/LinkedListDS/Node.py b/DataStructure/LinkedListDS/Node.py new file mode 100644 index 00000000..e5d5f123 --- /dev/null +++ b/DataStructure/LinkedListDS/Node.py @@ -0,0 +1,2 @@ +class Node: + pass \ No newline at end of file diff --git a/DataStructure/LinkedListDS/__init__.py b/DataStructure/LinkedListDS/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/DataStructure/__init__.py b/DataStructure/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..9284524e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Deepak Raj + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 00000000..17913b0b --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# AlgorithmsAndDataStructure + Algorithms And Data-Structure Implemented In Python 3 diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 00000000..e69de29b