├── 14_palindromepartioning.cpp ├── BFS.cpp ├── BinarySort.cpp ├── CONTRIBUTING.md ├── CONTRIBUTOR.md ├── CircularLinkedList.cpp ├── CreationDeletion.cpp ├── Dijkstra'sAlgo.cpp ├── Hamiltonian Path.cpp ├── InsertionSort.cpp ├── Invited or not.c++ ├── KMP Algorithm.cpp ├── Kadane's Algorithm.cpp ├── Kahn's Algorithm.cpp ├── Knapsack.py ├── LIS.cpp ├── Leetcode Problems ├── 14_Longest_common_prefix.cpp ├── 1_Two_Sum.cpp ├── 2_Remove_Duplicates_from_Sorted_Array.cpp ├── 330_Patching_Array.cpp ├── 3_Remove_Element.cpp ├── 4_Search_Insert_Position.cpp ├── 5_Plus_One.cpp ├── 6_Container_With_Most_Water.cpp ├── 74.search_2d_matrix.cpp └── 7_3Sum.cpp ├── LinearSearch.cpp ├── Lowest_Common_Ancestor.cpp ├── MST-kruskal.cpp ├── MergeSort.cpp ├── MergeSort.py ├── Nested_recursion.c ├── PanagramCheck.cpp ├── README.md ├── STL C++ ├── STL_LEC_1_Array_1.cpp ├── STL_LEC_1_Array_2.cpp ├── STL_LEC_1_Iterators_1.cpp ├── STL_LEC_1_vector_1.cpp ├── STL_LEC_1_vector_2.cpp ├── STL_LEC_2_Map_1.cpp ├── STL_LEC_2_PriorityQueue_1.cpp ├── STL_LEC_2_Questions_1.cpp ├── STL_LEC_2_Questions_2.cpp ├── STL_LEC_2_Set_1.cpp ├── STL_LEC_2_Stack_Queue_1.cpp ├── STL_LEC_2_dequeue_1.cpp ├── STL_LEC_2_list_1.cpp ├── STL_LEC_3_Algorithms_1.cpp ├── STL_LEC_3_Algorithms_2.cpp ├── STL_LEC_3_Algorithms_3.cpp ├── STL_LEC_3_Algorithms_4.cpp ├── STL_LEC_3_Algorithms_5.cpp ├── STL_LEC_3_Algorithms_6.cpp ├── STL_LEC_3_Algorithms_7.cpp ├── STL_LEC_3_Bitset_1.cpp └── Striver_Lec_Code.cpp ├── Shortest_Dist_bw_2_Nodes.cpp ├── Topological_Sort.cpp ├── Tower Of Hanoi.cpp ├── binaryExponentiation.cpp ├── binarySearch.cpp ├── binarylifting.cpp ├── binarylifting.exe ├── deletingInLinkedList.cpp ├── factorial.cpp ├── heapSort.cpp ├── insertionInLinkedList.cpp ├── kadane.cpp ├── kahns.cpp ├── linkedlistbasics.cpp ├── linkedlistbasics.exe ├── next_palidrome.cpp ├── nth_fib.py ├── palindrom.cpp ├── priorityqueue.c++ ├── quickSort.java ├── reverseArrayUsingRecursion.cpp ├── reverseLinkedList.cpp ├── rotate-linkedList.cpp ├── selectionSort.cpp ├── ternarySearch.cpp └── z-algo.cpp /14_palindromepartioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/14_palindromepartioning.cpp -------------------------------------------------------------------------------- /BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/BFS.cpp -------------------------------------------------------------------------------- /BinarySort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/BinarySort.cpp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/CONTRIBUTOR.md -------------------------------------------------------------------------------- /CircularLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/CircularLinkedList.cpp -------------------------------------------------------------------------------- /CreationDeletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/CreationDeletion.cpp -------------------------------------------------------------------------------- /Dijkstra'sAlgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Dijkstra'sAlgo.cpp -------------------------------------------------------------------------------- /Hamiltonian Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Hamiltonian Path.cpp -------------------------------------------------------------------------------- /InsertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/InsertionSort.cpp -------------------------------------------------------------------------------- /Invited or not.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Invited or not.c++ -------------------------------------------------------------------------------- /KMP Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/KMP Algorithm.cpp -------------------------------------------------------------------------------- /Kadane's Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Kadane's Algorithm.cpp -------------------------------------------------------------------------------- /Kahn's Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Kahn's Algorithm.cpp -------------------------------------------------------------------------------- /Knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Knapsack.py -------------------------------------------------------------------------------- /LIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/LIS.cpp -------------------------------------------------------------------------------- /Leetcode Problems/14_Longest_common_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/14_Longest_common_prefix.cpp -------------------------------------------------------------------------------- /Leetcode Problems/1_Two_Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/1_Two_Sum.cpp -------------------------------------------------------------------------------- /Leetcode Problems/2_Remove_Duplicates_from_Sorted_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/2_Remove_Duplicates_from_Sorted_Array.cpp -------------------------------------------------------------------------------- /Leetcode Problems/330_Patching_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/330_Patching_Array.cpp -------------------------------------------------------------------------------- /Leetcode Problems/3_Remove_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/3_Remove_Element.cpp -------------------------------------------------------------------------------- /Leetcode Problems/4_Search_Insert_Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/4_Search_Insert_Position.cpp -------------------------------------------------------------------------------- /Leetcode Problems/5_Plus_One.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/5_Plus_One.cpp -------------------------------------------------------------------------------- /Leetcode Problems/6_Container_With_Most_Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/6_Container_With_Most_Water.cpp -------------------------------------------------------------------------------- /Leetcode Problems/74.search_2d_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/74.search_2d_matrix.cpp -------------------------------------------------------------------------------- /Leetcode Problems/7_3Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Leetcode Problems/7_3Sum.cpp -------------------------------------------------------------------------------- /LinearSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/LinearSearch.cpp -------------------------------------------------------------------------------- /Lowest_Common_Ancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Lowest_Common_Ancestor.cpp -------------------------------------------------------------------------------- /MST-kruskal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/MST-kruskal.cpp -------------------------------------------------------------------------------- /MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/MergeSort.cpp -------------------------------------------------------------------------------- /MergeSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/MergeSort.py -------------------------------------------------------------------------------- /Nested_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Nested_recursion.c -------------------------------------------------------------------------------- /PanagramCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/PanagramCheck.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/README.md -------------------------------------------------------------------------------- /STL C++/STL_LEC_1_Array_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_1_Array_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_1_Array_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_1_Array_2.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_1_Iterators_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_1_Iterators_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_1_vector_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_1_vector_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_1_vector_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_1_vector_2.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_Map_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_Map_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_PriorityQueue_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_PriorityQueue_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_Questions_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_Questions_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_Questions_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_Questions_2.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_Set_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_Set_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_Stack_Queue_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_Stack_Queue_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_dequeue_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_dequeue_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_2_list_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_2_list_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_1.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_2.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_3.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_4.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_5.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_6.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Algorithms_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Algorithms_7.cpp -------------------------------------------------------------------------------- /STL C++/STL_LEC_3_Bitset_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/STL_LEC_3_Bitset_1.cpp -------------------------------------------------------------------------------- /STL C++/Striver_Lec_Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/STL C++/Striver_Lec_Code.cpp -------------------------------------------------------------------------------- /Shortest_Dist_bw_2_Nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Shortest_Dist_bw_2_Nodes.cpp -------------------------------------------------------------------------------- /Topological_Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Topological_Sort.cpp -------------------------------------------------------------------------------- /Tower Of Hanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/Tower Of Hanoi.cpp -------------------------------------------------------------------------------- /binaryExponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/binaryExponentiation.cpp -------------------------------------------------------------------------------- /binarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/binarySearch.cpp -------------------------------------------------------------------------------- /binarylifting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/binarylifting.cpp -------------------------------------------------------------------------------- /binarylifting.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/binarylifting.exe -------------------------------------------------------------------------------- /deletingInLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/deletingInLinkedList.cpp -------------------------------------------------------------------------------- /factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/factorial.cpp -------------------------------------------------------------------------------- /heapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/heapSort.cpp -------------------------------------------------------------------------------- /insertionInLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/insertionInLinkedList.cpp -------------------------------------------------------------------------------- /kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/kadane.cpp -------------------------------------------------------------------------------- /kahns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/kahns.cpp -------------------------------------------------------------------------------- /linkedlistbasics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/linkedlistbasics.cpp -------------------------------------------------------------------------------- /linkedlistbasics.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/linkedlistbasics.exe -------------------------------------------------------------------------------- /next_palidrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/next_palidrome.cpp -------------------------------------------------------------------------------- /nth_fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/nth_fib.py -------------------------------------------------------------------------------- /palindrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/palindrom.cpp -------------------------------------------------------------------------------- /priorityqueue.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/priorityqueue.c++ -------------------------------------------------------------------------------- /quickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/quickSort.java -------------------------------------------------------------------------------- /reverseArrayUsingRecursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/reverseArrayUsingRecursion.cpp -------------------------------------------------------------------------------- /reverseLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/reverseLinkedList.cpp -------------------------------------------------------------------------------- /rotate-linkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/rotate-linkedList.cpp -------------------------------------------------------------------------------- /selectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/selectionSort.cpp -------------------------------------------------------------------------------- /ternarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/ternarySearch.cpp -------------------------------------------------------------------------------- /z-algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitind2411/hacktoberfest-2022-DSA-CP/HEAD/z-algo.cpp --------------------------------------------------------------------------------