├── C ├── Singly_Linkedlist.c └── reverseshell.c ├── Cpp ├── 2stacks_in_array.cpp ├── Checking if a linked list is Palindrome.txt ├── Competitive Programming questions │ ├── Carrying Conundrum.cpp │ ├── Challenging Cliffs.cpp │ ├── Mocha and Hiking.cpp │ ├── Not Adjacent Matrix.cpp │ ├── Penalty.cpp │ ├── SlayTheDragon.cpp │ ├── UNQEQ.cpp │ ├── start14_BININVER.cpp │ └── start14_FIXFIX.cpp ├── Delete-nodes-having-greater-value-in-right-in-linked-list.cpp ├── Expidition_Problem_SPOJ_HARD.cpp ├── Graph │ └── PrimAlgorithm.cpp ├── Insertionsort.cpp ├── Linked list complete codes ├── MarsRover.cpp ├── MergeSort.cpp ├── Setin c++.cpp ├── Stock Span Problem │ ├── Documentation.md │ └── Stock-Span-Problem.cpp ├── Sudoku_Solver.cpp ├── TowerOfHanoi.cpp ├── TowerOfHanoi.exe ├── Vector in C++ .cpp ├── array_reverse.cpp ├── balancedparenthesis.cpp ├── catalan_numbers.cpp ├── checkequality.cpp ├── connected_components.cpp ├── count_anagrams.cpp ├── cyclicRedundancyCheck.cpp ├── deque_implementation.cpp ├── expo-searching.c++ ├── find_diameter_binary_trees.cpp ├── kmp_algo_string_pattern_match.cpp ├── kruskal.cpp ├── kthmin&max.cpp ├── longest increasing subsequence ├── longest_increasing_subsequence_dp.cpp ├── longestsubstring(dynamicprogramming).c++ ├── maxandmin.cpp ├── merge-two-bst.c++ ├── moveall+vetoonesode.cpp ├── multiThreading.cpp ├── nqueen.cpp ├── postfixevaluation.cpp ├── rat_maze.cpp ├── recursive binary search.cpp ├── search_element_in_row_column_sorted_matrix.cpp ├── selection-sort-c++.cpp ├── sieve_of_eratosthenes.cpp ├── sliding_window_max_of_all_subarrays.cpp ├── solveSudoku.cpp ├── stringinc++forcpp └── three-pointers.c++ ├── Java ├── BinarySerach_Iterative.java ├── BinarySerach_recursive.java ├── BreadthFirstSearch.java └── Create Frequency_Sort.java ├── Project ├── Phone_call_scenerio └── readme.md ├── Python ├── BMI calculator.py ├── Interactive Dictionary │ ├── README.md │ ├── data.json │ └── interactive_dict.py ├── heap-sort.py ├── keylogger.py └── strassensmul.py ├── longest common subsequence └── readme.md /C/Singly_Linkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/C/Singly_Linkedlist.c -------------------------------------------------------------------------------- /C/reverseshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/C/reverseshell.c -------------------------------------------------------------------------------- /Cpp/2stacks_in_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/2stacks_in_array.cpp -------------------------------------------------------------------------------- /Cpp/Checking if a linked list is Palindrome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Checking if a linked list is Palindrome.txt -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/Carrying Conundrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/Carrying Conundrum.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/Challenging Cliffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/Challenging Cliffs.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/Mocha and Hiking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/Mocha and Hiking.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/Not Adjacent Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/Not Adjacent Matrix.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/Penalty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/Penalty.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/SlayTheDragon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/SlayTheDragon.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/UNQEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/UNQEQ.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/start14_BININVER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/start14_BININVER.cpp -------------------------------------------------------------------------------- /Cpp/Competitive Programming questions/start14_FIXFIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Competitive Programming questions/start14_FIXFIX.cpp -------------------------------------------------------------------------------- /Cpp/Delete-nodes-having-greater-value-in-right-in-linked-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Delete-nodes-having-greater-value-in-right-in-linked-list.cpp -------------------------------------------------------------------------------- /Cpp/Expidition_Problem_SPOJ_HARD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Expidition_Problem_SPOJ_HARD.cpp -------------------------------------------------------------------------------- /Cpp/Graph/PrimAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Graph/PrimAlgorithm.cpp -------------------------------------------------------------------------------- /Cpp/Insertionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Insertionsort.cpp -------------------------------------------------------------------------------- /Cpp/Linked list complete codes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Linked list complete codes -------------------------------------------------------------------------------- /Cpp/MarsRover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/MarsRover.cpp -------------------------------------------------------------------------------- /Cpp/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/MergeSort.cpp -------------------------------------------------------------------------------- /Cpp/Setin c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Setin c++.cpp -------------------------------------------------------------------------------- /Cpp/Stock Span Problem/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Stock Span Problem/Documentation.md -------------------------------------------------------------------------------- /Cpp/Stock Span Problem/Stock-Span-Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Stock Span Problem/Stock-Span-Problem.cpp -------------------------------------------------------------------------------- /Cpp/Sudoku_Solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Sudoku_Solver.cpp -------------------------------------------------------------------------------- /Cpp/TowerOfHanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/TowerOfHanoi.cpp -------------------------------------------------------------------------------- /Cpp/TowerOfHanoi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/TowerOfHanoi.exe -------------------------------------------------------------------------------- /Cpp/Vector in C++ .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/Vector in C++ .cpp -------------------------------------------------------------------------------- /Cpp/array_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/array_reverse.cpp -------------------------------------------------------------------------------- /Cpp/balancedparenthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/balancedparenthesis.cpp -------------------------------------------------------------------------------- /Cpp/catalan_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/catalan_numbers.cpp -------------------------------------------------------------------------------- /Cpp/checkequality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/checkequality.cpp -------------------------------------------------------------------------------- /Cpp/connected_components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/connected_components.cpp -------------------------------------------------------------------------------- /Cpp/count_anagrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/count_anagrams.cpp -------------------------------------------------------------------------------- /Cpp/cyclicRedundancyCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/cyclicRedundancyCheck.cpp -------------------------------------------------------------------------------- /Cpp/deque_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/deque_implementation.cpp -------------------------------------------------------------------------------- /Cpp/expo-searching.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/expo-searching.c++ -------------------------------------------------------------------------------- /Cpp/find_diameter_binary_trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/find_diameter_binary_trees.cpp -------------------------------------------------------------------------------- /Cpp/kmp_algo_string_pattern_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/kmp_algo_string_pattern_match.cpp -------------------------------------------------------------------------------- /Cpp/kruskal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/kruskal.cpp -------------------------------------------------------------------------------- /Cpp/kthmin&max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/kthmin&max.cpp -------------------------------------------------------------------------------- /Cpp/longest increasing subsequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/longest increasing subsequence -------------------------------------------------------------------------------- /Cpp/longest_increasing_subsequence_dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/longest_increasing_subsequence_dp.cpp -------------------------------------------------------------------------------- /Cpp/longestsubstring(dynamicprogramming).c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/longestsubstring(dynamicprogramming).c++ -------------------------------------------------------------------------------- /Cpp/maxandmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/maxandmin.cpp -------------------------------------------------------------------------------- /Cpp/merge-two-bst.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/merge-two-bst.c++ -------------------------------------------------------------------------------- /Cpp/moveall+vetoonesode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/moveall+vetoonesode.cpp -------------------------------------------------------------------------------- /Cpp/multiThreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/multiThreading.cpp -------------------------------------------------------------------------------- /Cpp/nqueen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/nqueen.cpp -------------------------------------------------------------------------------- /Cpp/postfixevaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/postfixevaluation.cpp -------------------------------------------------------------------------------- /Cpp/rat_maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/rat_maze.cpp -------------------------------------------------------------------------------- /Cpp/recursive binary search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/recursive binary search.cpp -------------------------------------------------------------------------------- /Cpp/search_element_in_row_column_sorted_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/search_element_in_row_column_sorted_matrix.cpp -------------------------------------------------------------------------------- /Cpp/selection-sort-c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/selection-sort-c++.cpp -------------------------------------------------------------------------------- /Cpp/sieve_of_eratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/sieve_of_eratosthenes.cpp -------------------------------------------------------------------------------- /Cpp/sliding_window_max_of_all_subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/sliding_window_max_of_all_subarrays.cpp -------------------------------------------------------------------------------- /Cpp/solveSudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/solveSudoku.cpp -------------------------------------------------------------------------------- /Cpp/stringinc++forcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/stringinc++forcpp -------------------------------------------------------------------------------- /Cpp/three-pointers.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Cpp/three-pointers.c++ -------------------------------------------------------------------------------- /Java/BinarySerach_Iterative.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Java/BinarySerach_Iterative.java -------------------------------------------------------------------------------- /Java/BinarySerach_recursive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Java/BinarySerach_recursive.java -------------------------------------------------------------------------------- /Java/BreadthFirstSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Java/BreadthFirstSearch.java -------------------------------------------------------------------------------- /Java/Create Frequency_Sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Java/Create Frequency_Sort.java -------------------------------------------------------------------------------- /Project/Phone_call_scenerio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Project/Phone_call_scenerio -------------------------------------------------------------------------------- /Project/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Project/readme.md -------------------------------------------------------------------------------- /Python/BMI calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/BMI calculator.py -------------------------------------------------------------------------------- /Python/Interactive Dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/Interactive Dictionary/README.md -------------------------------------------------------------------------------- /Python/Interactive Dictionary/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/Interactive Dictionary/data.json -------------------------------------------------------------------------------- /Python/Interactive Dictionary/interactive_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/Interactive Dictionary/interactive_dict.py -------------------------------------------------------------------------------- /Python/heap-sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/heap-sort.py -------------------------------------------------------------------------------- /Python/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/keylogger.py -------------------------------------------------------------------------------- /Python/strassensmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/Python/strassensmul.py -------------------------------------------------------------------------------- /longest common subsequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/longest common subsequence -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktoberfestrepo/hacktoberfest2021/HEAD/readme.md --------------------------------------------------------------------------------