├── .DS_Store ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Competitive Coding ├── Backtrack │ ├── Sudoku.cpp │ └── nQueen.cpp ├── Bitwise Operations │ ├── .DS_Store │ ├── Count_One │ │ ├── count_one.cpp │ │ └── readme.md │ ├── Largest_power_of_2 │ │ ├── Largest_power_2.cpp │ │ └── readme.md │ ├── Power_of_Two │ │ ├── power_of_two.cpp │ │ └── readme.md │ ├── ith_bit_set │ │ ├── ith_bit_set.cpp │ │ └── readme.md │ └── readme.md ├── Data Structures │ ├── Queue │ │ ├── queue.class │ │ └── queue.java │ └── Stack │ │ ├── stack.class │ │ └── stack.java ├── Dynamic Programming │ ├── 0-1Knapsack │ │ ├── knapsack.java │ │ └── readme.md │ ├── Coin Change │ │ ├── Coin Change Readme.md │ │ └── Coin Change.cpp │ ├── Edit Distance │ │ ├── CODECHEF_seatsr.cpp │ │ ├── SPOJ_edist.cpp │ │ └── readme.md │ ├── Longest Common Subsequence │ │ └── lcs.cpp │ ├── Longest Increasing Subsequence │ │ ├── lis_n_log_n.cpp │ │ └── lis_n_squared_sol.cpp │ ├── Maximum Subarray Sum │ │ ├── Maximum Subarray Sum Readme.md │ │ └── Maximum Subarray Sum.cpp │ ├── Maximum Sum Increasing Subsequence │ │ ├── Maximum_sum_increasing_subsequence.cpp │ │ └── Maximum_sum_increasing_subsequence.md │ ├── cutRod │ │ ├── Readme.md │ │ └── cutRod.c │ ├── minCostPath │ │ ├── Readme.md │ │ └── minCostPath.cpp │ ├── subsetSum │ │ ├── Readme.md │ │ └── subsetSum.cpp │ └── uglyNumbers │ │ ├── Readme.md │ │ └── uglyNumbers.cpp ├── Geometry │ └── Convex hull │ │ ├── convex hull jarvis march.cpp │ │ └── readme.md ├── Graphs │ ├── Detecting cycles │ │ ├── detecting-cycles.cpp │ │ └── detecting-cycles_readme.md │ ├── Graph_Search │ │ ├── BreadthFirstSearch │ │ │ ├── Breadth_First_Search.cpp │ │ │ └── README.md │ │ └── DepthFIrstSearch │ │ │ ├── Depth_First_Search.cpp │ │ │ └── README.md │ ├── Shortest Path │ │ ├── Bellman Ford │ │ │ ├── Bellman_Ford.cpp │ │ │ └── readme.md │ │ ├── Floyd Warshall │ │ │ ├── Floyd_Warshall.cpp │ │ │ └── README.md │ │ └── dijsktra │ │ │ ├── README.md │ │ │ └── dijsktra_implementation.cpp │ ├── Strongly Connected Components │ │ └── SCC_kosaraju.cpp │ └── Topological Sort │ │ ├── readme.md │ │ └── topological.cpp ├── Greedy │ └── Knapsack │ │ ├── README.md │ │ └── knapsack.cpp ├── Linked List │ ├── Linked_Lists_based_on_Arrays │ │ ├── LInked_List_Operations_[Array].cpp │ │ └── README.md │ └── Linked_Lists_based_on_POINTERS │ │ ├── Linked_List_operation.cpp │ │ ├── README.md │ │ └── Removing_duplicates_from_Linked_List.cpp ├── Math │ ├── Catalan_Numbers │ │ ├── README.md │ │ ├── catalan_binomial.py │ │ └── catalan_recursive.py │ ├── Chinese Remainder Theorem │ │ ├── Modular multiplicative inverse.md │ │ ├── README.md │ │ ├── code.cpp │ │ └── code_MMI.cpp │ ├── FFT │ │ ├── FastFourierTransform.cpp │ │ └── README.md │ ├── LuckyNumber │ │ ├── README.md │ │ └── code.cpp │ ├── Project_Euler │ │ ├── Problem_21 │ │ │ ├── P21.class │ │ │ ├── P21.java │ │ │ └── README.md │ │ ├── README.md │ │ ├── amicable_pair(prob 21).java │ │ ├── fractal.py │ │ ├── p21.class │ │ └── sum_of_divisors.py │ ├── SieveOfEratosthenes │ │ ├── SieveOfEratosthenes.md │ │ └── Sieve_Of_Eratosthenes.cpp │ ├── checkOverflow │ │ ├── README.md │ │ └── checkOverflow.cpp │ └── kthPrimeFactor │ │ ├── README.md │ │ └── kthPrimeFactor.cpp ├── Search │ ├── Binary Search │ │ └── Binary_Search.c │ ├── Interpolation Search │ │ └── interpolation_search.c │ ├── Linear Search │ │ └── linear_search.c │ └── README.md ├── Sorting │ ├── Bubble Sort │ │ ├── bubble_sort.c │ │ └── bubble_sort.cpp │ ├── Counting_Sort │ │ └── counting_sort.cpp │ ├── Heap Sort │ │ ├── HeapSort.cpp │ │ ├── Readme.md │ │ └── Sorting_heapsort_anim.gif │ ├── Insertion_Sort │ │ └── insertion_sort.c │ ├── Merge_Sort │ │ └── Merge_Sort.c │ ├── Quick_Sort │ │ └── Quick_Sort.c │ ├── README.md │ ├── Radix_Sort │ │ └── Radix_sorting.cpp │ ├── Selection_Sort │ │ └── selection_sort.c │ └── Shell_Sort │ │ └── shellsort.py ├── Strings │ └── String Search │ │ ├── Knuth-Morris-Pratt_Algorithm.cpp │ │ ├── Manachar_algorithm │ │ ├── manachar_algorithm.py │ │ └── manchar_algorithm.md │ │ ├── Z-algorithm │ │ ├── Readme.md │ │ └── z-algorithm.cpp │ │ └── boyer_moore_algo └── Tree │ ├── Binary Indexed Tree │ ├── Reference.txt │ ├── SPOJ_ctrick.cpp │ ├── SPOJ_invcnt.cpp │ ├── binary_indexed_tree.cpp │ └── range_query_range_update │ │ └── SPOJ_horrible.cpp │ ├── Binary Tree │ ├── Lowest_common_ancestor │ │ ├── Readme.md │ │ └── lowest_common_ancestor.cpp │ ├── inorder_traversal │ │ ├── Readme.md │ │ └── inorder_traversal.cpp │ ├── level_order_traversal.c │ ├── postorder_traversal │ │ ├── postorder_traversal.cpp │ │ └── readme.md │ ├── preorder_traversal │ │ ├── preorder_traversal.cpp │ │ └── readme.md │ └── segment-trees │ │ ├── segment-trees.cpp │ │ └── segment-trees_readme.md │ └── Minimum Spanning Tree │ ├── Kruskal │ └── KruskalMST.cpp │ ├── Prims │ └── Prims.cpp │ └── readme.md ├── GFG Articles └── prateekiiest │ └── article.md ├── Graphics Algos ├── Car Animation │ ├── README.md │ └── car.c ├── README.md └── robo.c ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Machine learning ├── gradient descent │ ├── LinearReg.m │ ├── README.md │ └── gradient.png ├── EXPONENTIAL REGRESSION ├── LINEAR REGRESSION └── polynomial regression ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── Security Algorithms └── Cryptography │ ├── Atbash_Cipher │ ├── Atbash_Cipher.cpp │ └── README.md │ ├── MorseCode │ ├── REAdME.md │ ├── morseCode_decoder.cpp │ ├── morseCode_generator.cpp │ └── morse_decoder_output.png │ └── RSA Algortihm │ ├── CaesarCipher │ └── Python │ │ └── Caesarcipher.py │ ├── README.md │ └── rsa.py ├── _config.yml ├── algocodeiiest.jpg └── test.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | _site/ 3 | 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Competitive Coding/Backtrack/Sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Backtrack/Sudoku.cpp -------------------------------------------------------------------------------- /Competitive Coding/Backtrack/nQueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Backtrack/nQueen.cpp -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/.DS_Store -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Count_One/count_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Count_One/count_one.cpp -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Count_One/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Count_One/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Largest_power_of_2/Largest_power_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Largest_power_of_2/Largest_power_2.cpp -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Largest_power_of_2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Largest_power_of_2/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Power_of_Two/power_of_two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Power_of_Two/power_of_two.cpp -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/Power_of_Two/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/Power_of_Two/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/ith_bit_set/ith_bit_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/ith_bit_set/ith_bit_set.cpp -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/ith_bit_set/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/ith_bit_set/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Bitwise Operations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Bitwise Operations/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Data Structures/Queue/queue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Data Structures/Queue/queue.class -------------------------------------------------------------------------------- /Competitive Coding/Data Structures/Queue/queue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Data Structures/Queue/queue.java -------------------------------------------------------------------------------- /Competitive Coding/Data Structures/Stack/stack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Data Structures/Stack/stack.class -------------------------------------------------------------------------------- /Competitive Coding/Data Structures/Stack/stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Data Structures/Stack/stack.java -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/0-1Knapsack/knapsack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/0-1Knapsack/knapsack.java -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/0-1Knapsack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/0-1Knapsack/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Coin Change/Coin Change Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Coin Change/Coin Change Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Coin Change/Coin Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Coin Change/Coin Change.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Edit Distance/CODECHEF_seatsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Edit Distance/CODECHEF_seatsr.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Edit Distance/SPOJ_edist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Edit Distance/SPOJ_edist.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Edit Distance/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Edit Distance/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Longest Common Subsequence/lcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Longest Common Subsequence/lcs.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Longest Increasing Subsequence/lis_n_log_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Longest Increasing Subsequence/lis_n_log_n.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Longest Increasing Subsequence/lis_n_squared_sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Longest Increasing Subsequence/lis_n_squared_sol.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Maximum Subarray Sum/Maximum Subarray Sum Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Maximum Subarray Sum/Maximum Subarray Sum Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Maximum Subarray Sum/Maximum Subarray Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Maximum Subarray Sum/Maximum Subarray Sum.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Maximum Sum Increasing Subsequence/Maximum_sum_increasing_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Maximum Sum Increasing Subsequence/Maximum_sum_increasing_subsequence.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/Maximum Sum Increasing Subsequence/Maximum_sum_increasing_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/Maximum Sum Increasing Subsequence/Maximum_sum_increasing_subsequence.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/cutRod/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/cutRod/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/cutRod/cutRod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/cutRod/cutRod.c -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/minCostPath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/minCostPath/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/minCostPath/minCostPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/minCostPath/minCostPath.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/subsetSum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/subsetSum/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/subsetSum/subsetSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/subsetSum/subsetSum.cpp -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/uglyNumbers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/uglyNumbers/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Dynamic Programming/uglyNumbers/uglyNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Dynamic Programming/uglyNumbers/uglyNumbers.cpp -------------------------------------------------------------------------------- /Competitive Coding/Geometry/Convex hull/convex hull jarvis march.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Geometry/Convex hull/convex hull jarvis march.cpp -------------------------------------------------------------------------------- /Competitive Coding/Geometry/Convex hull/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Geometry/Convex hull/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Detecting cycles/detecting-cycles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Detecting cycles/detecting-cycles.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Detecting cycles/detecting-cycles_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Detecting cycles/detecting-cycles_readme.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Graph_Search/BreadthFirstSearch/Breadth_First_Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Graph_Search/BreadthFirstSearch/Breadth_First_Search.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Graph_Search/BreadthFirstSearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Graph_Search/BreadthFirstSearch/README.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Graph_Search/DepthFIrstSearch/Depth_First_Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Graph_Search/DepthFIrstSearch/Depth_First_Search.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Graph_Search/DepthFIrstSearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Graph_Search/DepthFIrstSearch/README.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/Bellman Ford/Bellman_Ford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/Bellman Ford/Bellman_Ford.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/Bellman Ford/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/Bellman Ford/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/Floyd Warshall/Floyd_Warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/Floyd Warshall/Floyd_Warshall.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/Floyd Warshall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/Floyd Warshall/README.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/dijsktra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/dijsktra/README.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Shortest Path/dijsktra/dijsktra_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Shortest Path/dijsktra/dijsktra_implementation.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Strongly Connected Components/SCC_kosaraju.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Strongly Connected Components/SCC_kosaraju.cpp -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Topological Sort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Topological Sort/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Graphs/Topological Sort/topological.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Graphs/Topological Sort/topological.cpp -------------------------------------------------------------------------------- /Competitive Coding/Greedy/Knapsack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Greedy/Knapsack/README.md -------------------------------------------------------------------------------- /Competitive Coding/Greedy/Knapsack/knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Greedy/Knapsack/knapsack.cpp -------------------------------------------------------------------------------- /Competitive Coding/Linked List/Linked_Lists_based_on_Arrays/LInked_List_Operations_[Array].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Linked List/Linked_Lists_based_on_Arrays/LInked_List_Operations_[Array].cpp -------------------------------------------------------------------------------- /Competitive Coding/Linked List/Linked_Lists_based_on_Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Linked List/Linked_Lists_based_on_Arrays/README.md -------------------------------------------------------------------------------- /Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/Linked_List_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/Linked_List_operation.cpp -------------------------------------------------------------------------------- /Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/README.md -------------------------------------------------------------------------------- /Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/Removing_duplicates_from_Linked_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Linked List/Linked_Lists_based_on_POINTERS/Removing_duplicates_from_Linked_List.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/Catalan_Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Catalan_Numbers/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/Catalan_Numbers/catalan_binomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Catalan_Numbers/catalan_binomial.py -------------------------------------------------------------------------------- /Competitive Coding/Math/Catalan_Numbers/catalan_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Catalan_Numbers/catalan_recursive.py -------------------------------------------------------------------------------- /Competitive Coding/Math/Chinese Remainder Theorem/Modular multiplicative inverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Chinese Remainder Theorem/Modular multiplicative inverse.md -------------------------------------------------------------------------------- /Competitive Coding/Math/Chinese Remainder Theorem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Chinese Remainder Theorem/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/Chinese Remainder Theorem/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Chinese Remainder Theorem/code.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/Chinese Remainder Theorem/code_MMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Chinese Remainder Theorem/code_MMI.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/FFT/FastFourierTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/FFT/FastFourierTransform.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/FFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/FFT/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/LuckyNumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/LuckyNumber/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/LuckyNumber/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/LuckyNumber/code.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/Problem_21/P21.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/Problem_21/P21.class -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/Problem_21/P21.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/Problem_21/P21.java -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/Problem_21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/Problem_21/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/amicable_pair(prob 21).java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/amicable_pair(prob 21).java -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/fractal.py -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/p21.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/p21.class -------------------------------------------------------------------------------- /Competitive Coding/Math/Project_Euler/sum_of_divisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/Project_Euler/sum_of_divisors.py -------------------------------------------------------------------------------- /Competitive Coding/Math/SieveOfEratosthenes/SieveOfEratosthenes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/SieveOfEratosthenes/SieveOfEratosthenes.md -------------------------------------------------------------------------------- /Competitive Coding/Math/SieveOfEratosthenes/Sieve_Of_Eratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/SieveOfEratosthenes/Sieve_Of_Eratosthenes.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/checkOverflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/checkOverflow/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/checkOverflow/checkOverflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/checkOverflow/checkOverflow.cpp -------------------------------------------------------------------------------- /Competitive Coding/Math/kthPrimeFactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/kthPrimeFactor/README.md -------------------------------------------------------------------------------- /Competitive Coding/Math/kthPrimeFactor/kthPrimeFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Math/kthPrimeFactor/kthPrimeFactor.cpp -------------------------------------------------------------------------------- /Competitive Coding/Search/Binary Search/Binary_Search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Search/Binary Search/Binary_Search.c -------------------------------------------------------------------------------- /Competitive Coding/Search/Interpolation Search/interpolation_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Search/Interpolation Search/interpolation_search.c -------------------------------------------------------------------------------- /Competitive Coding/Search/Linear Search/linear_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Search/Linear Search/linear_search.c -------------------------------------------------------------------------------- /Competitive Coding/Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Search/README.md -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Bubble Sort/bubble_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Bubble Sort/bubble_sort.c -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Bubble Sort/bubble_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Bubble Sort/bubble_sort.cpp -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Counting_Sort/counting_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Counting_Sort/counting_sort.cpp -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Heap Sort/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Heap Sort/HeapSort.cpp -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Heap Sort/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Heap Sort/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Heap Sort/Sorting_heapsort_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Heap Sort/Sorting_heapsort_anim.gif -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Insertion_Sort/insertion_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Insertion_Sort/insertion_sort.c -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Merge_Sort/Merge_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Merge_Sort/Merge_Sort.c -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Quick_Sort/Quick_Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Quick_Sort/Quick_Sort.c -------------------------------------------------------------------------------- /Competitive Coding/Sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/README.md -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Radix_Sort/Radix_sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Radix_Sort/Radix_sorting.cpp -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Selection_Sort/selection_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Selection_Sort/selection_sort.c -------------------------------------------------------------------------------- /Competitive Coding/Sorting/Shell_Sort/shellsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Sorting/Shell_Sort/shellsort.py -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/Knuth-Morris-Pratt_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/Knuth-Morris-Pratt_Algorithm.cpp -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/Manachar_algorithm/manachar_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/Manachar_algorithm/manachar_algorithm.py -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/Manachar_algorithm/manchar_algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/Manachar_algorithm/manchar_algorithm.md -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/Z-algorithm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/Z-algorithm/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/Z-algorithm/z-algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/Z-algorithm/z-algorithm.cpp -------------------------------------------------------------------------------- /Competitive Coding/Strings/String Search/boyer_moore_algo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Strings/String Search/boyer_moore_algo -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Indexed Tree/Reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Indexed Tree/Reference.txt -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Indexed Tree/SPOJ_ctrick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Indexed Tree/SPOJ_ctrick.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Indexed Tree/SPOJ_invcnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Indexed Tree/SPOJ_invcnt.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Indexed Tree/binary_indexed_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Indexed Tree/binary_indexed_tree.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Indexed Tree/range_query_range_update/SPOJ_horrible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Indexed Tree/range_query_range_update/SPOJ_horrible.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/Lowest_common_ancestor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/Lowest_common_ancestor/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/Lowest_common_ancestor/lowest_common_ancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/Lowest_common_ancestor/lowest_common_ancestor.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/inorder_traversal/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/inorder_traversal/Readme.md -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/inorder_traversal/inorder_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/inorder_traversal/inorder_traversal.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/level_order_traversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/level_order_traversal.c -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/postorder_traversal/postorder_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/postorder_traversal/postorder_traversal.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/postorder_traversal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/postorder_traversal/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/preorder_traversal/preorder_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/preorder_traversal/preorder_traversal.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/preorder_traversal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/preorder_traversal/readme.md -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/segment-trees/segment-trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/segment-trees/segment-trees.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Binary Tree/segment-trees/segment-trees_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Binary Tree/segment-trees/segment-trees_readme.md -------------------------------------------------------------------------------- /Competitive Coding/Tree/Minimum Spanning Tree/Kruskal/KruskalMST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Minimum Spanning Tree/Kruskal/KruskalMST.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Minimum Spanning Tree/Prims/Prims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Minimum Spanning Tree/Prims/Prims.cpp -------------------------------------------------------------------------------- /Competitive Coding/Tree/Minimum Spanning Tree/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Competitive Coding/Tree/Minimum Spanning Tree/readme.md -------------------------------------------------------------------------------- /GFG Articles/prateekiiest/article.md: -------------------------------------------------------------------------------- 1 | GFG link 2 | -------------------------------------------------------------------------------- /Graphics Algos/Car Animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Graphics Algos/Car Animation/README.md -------------------------------------------------------------------------------- /Graphics Algos/Car Animation/car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Graphics Algos/Car Animation/car.c -------------------------------------------------------------------------------- /Graphics Algos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Graphics Algos/README.md -------------------------------------------------------------------------------- /Graphics Algos/robo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Graphics Algos/robo.c -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /Machine learning/ gradient descent/LinearReg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/ gradient descent/LinearReg.m -------------------------------------------------------------------------------- /Machine learning/ gradient descent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/ gradient descent/README.md -------------------------------------------------------------------------------- /Machine learning/ gradient descent/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/ gradient descent/gradient.png -------------------------------------------------------------------------------- /Machine learning/EXPONENTIAL REGRESSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/EXPONENTIAL REGRESSION -------------------------------------------------------------------------------- /Machine learning/LINEAR REGRESSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/LINEAR REGRESSION -------------------------------------------------------------------------------- /Machine learning/polynomial regression: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Machine learning/polynomial regression -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/Atbash_Cipher/Atbash_Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/Atbash_Cipher/Atbash_Cipher.cpp -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/Atbash_Cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/Atbash_Cipher/README.md -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/MorseCode/REAdME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/MorseCode/REAdME.md -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/MorseCode/morseCode_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/MorseCode/morseCode_decoder.cpp -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/MorseCode/morseCode_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/MorseCode/morseCode_generator.cpp -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/MorseCode/morse_decoder_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/MorseCode/morse_decoder_output.png -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/RSA Algortihm/CaesarCipher/Python/Caesarcipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/RSA Algortihm/CaesarCipher/Python/Caesarcipher.py -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/RSA Algortihm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/RSA Algortihm/README.md -------------------------------------------------------------------------------- /Security Algorithms/Cryptography/RSA Algortihm/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/Security Algorithms/Cryptography/RSA Algortihm/rsa.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/_config.yml -------------------------------------------------------------------------------- /algocodeiiest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaharnishant11/Algorithms/HEAD/algocodeiiest.jpg -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- 1 | # tsting 2 | --------------------------------------------------------------------------------