├── CODE_OF_CONDUCT.md ├── LICENSE ├── Prachi1(Pizza_with_N_Slice) ├── README.md ├── Sahil Hooda (OpenCV) ├── Upload Your Code ├── Arrays │ ├── 0.cpp │ ├── Sort an array of 0s, 1s & 2s.cpp │ ├── integer to roman.cpp │ ├── max_subarray_sum.cpp │ ├── peak_index_in_array.cpp │ └── twosummoptimal.cpp ├── Binary Search Tree │ └── 0.cpp ├── Bit Magic │ └── 0.cpp ├── Deque │ └── 0.cpp ├── Disjoint Set │ └── 0.cpp ├── Dynamic Programming │ └── 0.cpp ├── Graph │ ├── 0.cpp │ └── Kruskal’s_algo.cpp ├── Greedy │ └── 0.cpp ├── Hashing │ └── 0.cpp ├── Heap │ └── 0.cpp ├── Mathematics │ ├── 0.cpp │ └── math-calculations.cpp ├── Most_Useful_Algorithms │ ├── ActivitySelection.cpp │ ├── BellManFord.cpp │ ├── Dijkstra.cpp │ ├── Floyd Warshall.cpp │ ├── HuffmanCoding.cpp │ ├── K_way_mergeSort.cpp │ ├── Kruskal.cpp │ ├── Merge_Insertion.cpp │ ├── NQueue.cpp │ ├── Prims.cpp │ ├── RatMaze.cpp │ ├── Stack_reduced_QuickSort.cpp │ ├── Sudoko.cpp │ ├── SumOfSubset.cpp │ └── Topological.cpp ├── Motivational Quotes Email Sender using Python │ └── index.py ├── Queue │ ├── 0.cpp │ └── Queue.cpp ├── Recursion & Backtracking │ └── 0.cpp ├── Searching │ ├── 0.cpp │ └── Linear-Search.cpp ├── Segment Tree │ └── 0.cpp ├── Stack │ ├── 0.cpp │ ├── Basic _of_stack.c++ │ └── infixtopostfix.cpp ├── Strings │ ├── 0.cpp │ └── reverse_string.cpp ├── Tree │ └── 0.cpp └── Trie │ └── 0.cpp └── contributors └── image ├── Aryan_Inguz.png └── bharath.png /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/LICENSE -------------------------------------------------------------------------------- /Prachi1(Pizza_with_N_Slice): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Prachi1(Pizza_with_N_Slice) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/README.md -------------------------------------------------------------------------------- /Sahil Hooda (OpenCV): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Sahil Hooda (OpenCV) -------------------------------------------------------------------------------- /Upload Your Code/Arrays/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Arrays/Sort an array of 0s, 1s & 2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/Sort an array of 0s, 1s & 2s.cpp -------------------------------------------------------------------------------- /Upload Your Code/Arrays/integer to roman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/integer to roman.cpp -------------------------------------------------------------------------------- /Upload Your Code/Arrays/max_subarray_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/max_subarray_sum.cpp -------------------------------------------------------------------------------- /Upload Your Code/Arrays/peak_index_in_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/peak_index_in_array.cpp -------------------------------------------------------------------------------- /Upload Your Code/Arrays/twosummoptimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Arrays/twosummoptimal.cpp -------------------------------------------------------------------------------- /Upload Your Code/Binary Search Tree/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Binary Search Tree/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Bit Magic/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Bit Magic/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Deque/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Deque/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Disjoint Set/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Disjoint Set/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Dynamic Programming/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Dynamic Programming/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Graph/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Graph/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Graph/Kruskal’s_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Graph/Kruskal’s_algo.cpp -------------------------------------------------------------------------------- /Upload Your Code/Greedy/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Greedy/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Hashing/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Hashing/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Heap/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Heap/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Mathematics/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Mathematics/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Mathematics/math-calculations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Mathematics/math-calculations.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/ActivitySelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/ActivitySelection.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/BellManFord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/BellManFord.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Dijkstra.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Floyd Warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Floyd Warshall.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/HuffmanCoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/HuffmanCoding.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/K_way_mergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/K_way_mergeSort.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Kruskal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Kruskal.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Merge_Insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Merge_Insertion.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/NQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/NQueue.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Prims.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/RatMaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/RatMaze.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Stack_reduced_QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Stack_reduced_QuickSort.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Sudoko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Sudoko.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/SumOfSubset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/SumOfSubset.cpp -------------------------------------------------------------------------------- /Upload Your Code/Most_Useful_Algorithms/Topological.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Most_Useful_Algorithms/Topological.cpp -------------------------------------------------------------------------------- /Upload Your Code/Motivational Quotes Email Sender using Python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Motivational Quotes Email Sender using Python/index.py -------------------------------------------------------------------------------- /Upload Your Code/Queue/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Queue/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Queue/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Queue/Queue.cpp -------------------------------------------------------------------------------- /Upload Your Code/Recursion & Backtracking/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Recursion & Backtracking/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Searching/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Searching/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Searching/Linear-Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Searching/Linear-Search.cpp -------------------------------------------------------------------------------- /Upload Your Code/Segment Tree/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Segment Tree/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Stack/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Stack/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Stack/Basic _of_stack.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Stack/Basic _of_stack.c++ -------------------------------------------------------------------------------- /Upload Your Code/Stack/infixtopostfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Stack/infixtopostfix.cpp -------------------------------------------------------------------------------- /Upload Your Code/Strings/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Strings/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Strings/reverse_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Strings/reverse_string.cpp -------------------------------------------------------------------------------- /Upload Your Code/Tree/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Tree/0.cpp -------------------------------------------------------------------------------- /Upload Your Code/Trie/0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/Upload Your Code/Trie/0.cpp -------------------------------------------------------------------------------- /contributors/image/Aryan_Inguz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/contributors/image/Aryan_Inguz.png -------------------------------------------------------------------------------- /contributors/image/bharath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UmangDalvadi/Hacktoberfest-2023/HEAD/contributors/image/bharath.png --------------------------------------------------------------------------------