├── AlgorithmCPP └── Brian_Kernighan’s_algorithm.cpp ├── Algorithms ├── BFS_Algorithm.cpp ├── Backtracking ├── Bellman-Ford-Algorithm.cpp ├── CPU Scheduling │ ├── RoundRobinScheduling.cpp │ ├── first-come-first-serve-with-diff-arrival-time_C++.cpp │ ├── first-come-first-serve_C++.cpp │ ├── priority-scheduling_C++.cpp │ └── shortest-job-first_C++.cpp ├── DFS_Algorithm.cpp ├── Dynamic Programming │ ├── Coin_Exchange.cpp │ ├── Gold_Mine.cpp │ ├── Subset_Sum.cpp │ └── TrappingRainWater.java ├── Eculidean-Algorithm.cpp ├── Floyd-Warshall-Algorithm.cpp ├── Graphics │ ├── Bresenhams-Line_C.C │ └── Liang-Barsky_C.C ├── Graphs │ ├── Dijkstra-Algorithm.cpp │ ├── Rat_in_a_Maze.cpp │ └── dijkstraProb.cpp ├── Kadanes-Algorithm.cpp ├── Matrix Multiplication ├── N-queen-problem_c++.cpp ├── README.md ├── Searching │ ├── Binary-search.cpp │ ├── Binary_Search_recc.cpp │ ├── Jump-Search.cpp │ ├── Linear-search.cpp │ ├── Quick_Sort_Rec.cpp │ └── interpolation_search.cpp ├── Shortest_path_backtracking_c++.cpp ├── Sorting │ ├── Bubble Sort using Recursion.cpp │ ├── Bubble-sort.cpp │ ├── Counting-Sort.cpp │ ├── Heap_sortc++.cpp │ ├── Insertion-sort.cpp │ ├── Merge_sort.cpp │ ├── Merge_sort_recc.cpp │ ├── Quick Sort.cpp │ ├── Quick-sort.cpp │ ├── Radix-sort.cpp │ ├── Selection Sort using Recursion.cpp │ ├── Selection-sort.cpp │ ├── Wave-Sort.cpp │ ├── bucket_sort.cpp │ ├── comb-sort.cpp │ ├── counting_sort.cpp │ └── template-sorting-c++.cpp ├── StackUsingLL.cpp ├── String-Algorithm.cpp ├── kadane's.py ├── mergeSort.c ├── optimal_merge_pattern.cpp └── prims_algorithm.cpp ├── Bit-tricks ├── Addition-without-arithmetic_C++.cpp ├── Odd-occuring_C++.cpp └── Swapping-two-no_C++.cpp ├── Bitwise-Hacks ├── Codeforces_1421A_XORwice.cpp └── bits.cpp ├── CSES-Solutions ├── Company Queries 1.cpp ├── Company Queries II.cpp ├── Distance Queries.cpp ├── Distinct Colors.cpp ├── Increasing-Array.cpp ├── Missing-Number.cpp ├── Number-Spiral.cpp ├── Path Queries.cpp ├── Repetitions.cpp ├── Subordinates.cpp ├── Subtree Queries.cpp ├── Trailing Zeros.cpp ├── Tree Distances I ├── Tree Distances II.cpp ├── TreeDiameter.cpp └── Weird-Algorithm.cpp ├── Complexity_Cheatsheet.pdf ├── Contest ├── Codechef │ ├── Codechef-Sep-Cookoff-Div2 │ │ ├── Codechef-sep-coofoff-1.cpp │ │ └── Codechef-sep-coofoff-2.cpp │ └── Codechef-Sep-Lunchtime-Div2 │ │ ├── Codechef-lunchtime-div2-1.cpp │ │ ├── FLIPCARDS_LTIME112C │ │ └── Ltime112b-Incadd └── Codeforces │ ├── Codeforces-605-Div3 │ └── Codeforces-605-div3-D.cpp │ ├── Codeforces-613-Div2 │ └── Codeforces-613-div2-C.cpp │ ├── Codeforces-633-Div1 │ └── Codeforces-633-div1-A.cpp │ ├── Codeforces-670-Div2 │ └── Codeforces-670-div2-A.cpp │ ├── Codeforces-82-Div2 │ └── Codeforces-82-div2-B.cpp │ └── Codeforces-TestingRound-16 │ └── Codeforces-16-Div2.cpp ├── Data-structures-in-Kotlin ├── LinkedList.kt ├── Node.kt ├── Queue.kt ├── Stack.kt └── main.kt ├── Data-structures ├── Arrays │ ├── ArrayOperations.cpp │ ├── DynamicAllocation2DArrays.cpp │ ├── Find-n-unique-integers-sum-up-to-zero.cpp │ ├── Median_of_two_sorted_arrays_of_different_sizes.cpp │ ├── ReverseArray.cpp │ └── removingDuplicates.cpp ├── Binary_Search.cpp ├── Graphs │ └── Graphsvs.java ├── Linked_List.cpp ├── List │ ├── Linkedlist.cpp │ ├── doublyll.cpp │ └── phone directory.cpp ├── Queue │ ├── Circular Queue Using Circular Linked List │ ├── Circular_Queue.cpp │ ├── Deque.cpp │ ├── Queue-using-linked-list.cpp │ └── Queue.cpp ├── README.md ├── Stack │ ├── Stack.cpp │ ├── Stack_using_2_queues.cpp │ ├── Stack_v2.cpp │ ├── balanced_parenthesis_stack.cpp │ ├── implementation_of_stack_using_two_queues.cpp │ └── stack_operations.cpp ├── TRIE │ ├── StreamOfCharactersLeetCode_Java.java │ ├── Tclient_Java.java │ └── TrieCode_Java.java ├── Threaded binary tree example.cpp ├── Tree │ ├── 226-invert-binary-tree.cpp │ ├── Binary-tree-traversal.cpp │ ├── LCA-of-Binary-Tree.cpp │ └── heap_sort.cpp ├── bst_operations.cpp ├── morris.cpp ├── no_of_provinces.cpp ├── nqueen_rec2.cpp ├── ser_der.cpp ├── sud_rec3.cpp └── vertical_trav.cpp ├── Games └── Tic_tac_toe.py ├── HackerRank-Solutions ├── Algorithms │ ├── Dynamic-programming │ │ ├── Fibonacci-modified.java │ │ └── Maximum-subarray.java │ ├── Greedy │ │ └── Priyanka-and-toys.java │ └── Search │ │ └── Ice-cream-parlor.java ├── Arrays │ └── Big-sorting.java └── Practice Problems │ ├── Athlete Sort.py │ ├── any_or_all.py │ ├── arrays.py │ └── maximize_it.py ├── Important-Interview-Questions ├── Stack-balanced-paranthesis.cpp ├── Unique-number-from-pairs-by-XOR.cpp └── max_occurrences.cpp ├── Insertion Sort ├── Insertion Sort.cbp ├── Insertion Sort.depend ├── Insertion Sort.layout ├── bin │ └── Debug │ │ └── Insertion Sort.exe ├── main.cpp └── obj │ └── Debug │ └── main.o ├── InterviewBit-Solutions └── Heaps │ ├── Distinct-numbers-in-window.cpp │ ├── LRU-cache.cpp │ ├── Merge-K-sorted-lists.cpp │ └── N-max-pair-combinations.cpp ├── LICENSE ├── Leetcode-Solutions ├── Arrays │ ├── Best-time-to-buy-and-sell-stock.java │ ├── Cells-with-odd-values-in-a-matrix.cpp │ ├── Kids-with-the-greatest-number-of-candies.cpp │ ├── Largest-rectangle-in-histogram.java │ ├── Longest Valid Parentheses.cpp │ ├── Majority-Element.java │ ├── Maximum-Subarray.py │ ├── Maximum-product-subarray.java │ ├── Median_of_two_sorted_arrays.py │ ├── Minimum-Number-of-Arrows-to-Burst-Balloons.java │ ├── Minimum-time-visiting-all-points.cpp │ ├── Regular Expression Matching.cpp │ ├── Remove covered intervals.cpp │ ├── Roman-to-Integer.cpp │ ├── Rotate-image.java │ ├── Subarray-sum-equals-k.java │ ├── TrappingRainwater.java │ ├── TwoSum.py │ ├── TwoSumProb.cpp │ ├── find_first_and_last_position_of_element_in_sorted_array.py │ ├── majority_element.py │ └── minimum-time-to-make-rope-colorful.py ├── DP │ ├── 10-Regular-Expression-Matching.cpp │ ├── 118-Pascal-triangle.cpp │ ├── 32-Longest-valid-parantheses.cpp │ ├── 5-Longest-Palindromic-Substring.cpp │ ├── 72-Edit-Distance.cpp │ ├── Coin_Change_DP.cpp │ ├── HOUSE ROBBER PROBLEM II AND III.cpp │ ├── climbing_stairs.py │ ├── house_robber.cpp │ ├── number-of-dice-rolls-with-target-sum.py │ └── ugly-Number-II.java ├── Graph │ ├── Biparte.cpp │ ├── CourseI.cpp │ ├── RottenOranges.cpp │ ├── Routes.cpp │ ├── Sliding.cpp │ └── ladder.cpp ├── Greedy │ ├── Find Valid Matrix Given Row and Column Sums.cpp │ ├── Minimum Add to Make Parentheses Valid.cpp │ ├── Reduce Array Size to The Half.cpp │ └── Split-a-string-in-balanced-strings.cpp ├── Linked-List │ ├── 141-Linked-List-Cycle.cpp │ ├── 19-Remove-Nth-Node-From-End-of-List.cpp │ ├── 206-Reverse-Linked-List.cpp │ ├── 21-Merge-Two-Sorted-Lists.cpp │ ├── 237-Delete-Node-in-a-Linked-List.cpp │ ├── 24-Swap-Nodes-in-Pairs.cpp │ ├── 61-Rotate-List.cpp │ ├── 83-Remove-Duplicates-from-Sorted-List.cpp │ ├── 86-Partition-List.cpp │ ├── 876-Middle-of-the-Linked-List.cpp │ ├── Copy-List-With-Random-Pointer.cpp │ ├── Linked-List-Cycle-II.cpp │ ├── Merge-Sorted-Lists_C++.cpp │ ├── Odd-Even-Linked-List.cpp │ ├── Palindrome-Linked-List.cpp │ ├── Remove_Linked_List_Elements.cpp │ ├── Reorder-List.cpp │ ├── intersection-of-two-linked-lists_C++.cpp │ ├── linked-list-cycle_C++.cpp │ └── palindrome-linked-list.cpp ├── LinkedList │ ├── CopyListWithRandomPointers1_Java.java │ ├── CopyListWithRandomPointers2_Java.java │ ├── FlattenMultilevelLinklist.java │ ├── IntersectionOfTwoLinkedLists.java │ ├── LRUCache.java │ ├── MergeKSortedLists_Java.java │ ├── OddEvenLinkedLists_Java.java │ ├── RemoveDuplicatesFromSortedList_Java.java │ ├── RemoveNthNodeFromEndOfList_Java.java │ ├── ReorderList_Java.java │ ├── ReorderORfold.java │ ├── ReverseLinkedList2.java │ ├── ReverseNodesInK-Groups_Java.java │ └── RotateLinkedLists.java ├── Matrix │ ├── Rotate each ring of matrix anticlockwise by K elements.cpp │ └── spiral-matrix.cpp ├── Queue │ ├── 622-Design-Circular-Queue.cpp │ └── 641-Design-Circular-Deque.cpp ├── Strings │ ├── Defanging-an-ip-address.cpp │ ├── Detect-Capital.java │ ├── Detect-Captital.cpp │ ├── Longest_Substring_Length.cpp │ ├── Remove-Duplicate-Characters.java │ ├── To-lower-case_C ++.cpp │ ├── Valid-Palindrome.cpp │ ├── longestCommonPrefix.java │ ├── longest_palindromic_substring.py │ ├── maxOccurrence.cpp │ ├── romantointeger.py │ ├── split-array-into-fibonacci-sequence_java.java │ └── subsequence.cpp └── Tree │ ├── 257-binary-tree-paths.cpp │ ├── 96-Unique-Binary-Search-Trees.cpp │ ├── Path-Sum3.cpp │ ├── Path_Sum3.cpp │ ├── Serialize-deserialize-binary-tree.java │ ├── Vertical-Order-traversal.cpp │ ├── all-nodes-distance-k-in-binary-tree.java │ └── equal-tree-partition.java ├── Logarithmic-tricks ├── Count-digits-of-number.cpp └── Power-of-two.cpp ├── Longest Subsequence from a numeric String divisible by K ├── Pepcoding-level-1-list ├── GettingStarted │ ├── Countdigitsinanumber.cpp │ ├── Digits-of-a-number.cpp │ ├── Inverse-a-number.cpp │ ├── Prime-factorization-of-a-number.cpp │ ├── PrintAllPrimesTillN.cpp │ ├── PrintFabonacciNumbersTillN.cpp │ ├── Pythagorean-triplet.cpp │ ├── Reverse-number.cpp │ ├── Rotate-a-number.cpp │ ├── The-curious-case-of-benjamin-bulbs.cpp │ ├── gcd-and-lcm.cpp │ └── printZ.cpp └── Stack-and-queues │ ├── Histogram.cpp │ ├── Infix-conversion.cpp │ ├── Postfix-evaluation-and-conversions.cpp │ ├── Sliding-window.cpp │ └── Stock-span.cpp ├── Practice-codechef-solutions ├── Arrays │ ├── AMR15A.cpp │ ├── ARRPROB.cpp │ ├── CHGM1.cpp │ ├── CPAIRS.cpp │ ├── CSUM.cpp │ ├── FLOW017 .cpp │ ├── MARM.cpp │ ├── POGOSTCK.cpp │ ├── ReplaceforX.cpp │ ├── SNTEMPLE.cpp │ ├── STRLS1.cpp │ ├── TLG.cpp │ └── TWTCLOSE.cpp ├── Codechef Problem-Covid_Pandemic_and_Long_Queue.cpp └── Math │ ├── BITOBYT.java │ ├── CARVANS.cpp │ ├── CHOPRT.cpp │ ├── CHSERVE.cpp │ ├── FLOW008 .cpp │ ├── FLOW013.cpp │ ├── FLOW018 .cpp │ ├── HMAPPY2.cpp │ ├── ICL1902.cpp │ ├── MUFFINS3.cpp │ └── REMISS .cpp ├── Python-Pygame └── follow_cursor.py ├── README.md ├── Scramble_string_problem.cpp ├── Willam fiset DSA c++ translated code ├── Arrays │ ├── Array.cpp │ └── GenericArray.cpp ├── Balanced Binary Search Tree │ └── AVL Tree │ │ └── AvlTreeRecursive.cpp ├── Binary Search Tree │ └── bst.cpp ├── Fenwick Tree │ ├── FenwickTreeRangeQueryPointUpdate.cpp │ └── FenwickTreeRangeUpdatePointQuery.cpp ├── Hash Table │ ├── HashTableSeperateChaining.cpp │ ├── OpenAdressingDoubleHashing.cpp │ ├── OpenAdressingLinearProbing.cpp │ └── OpenAdressingQuadraticProbing.cpp ├── Linked List │ ├── Doubly_Linked_list.cpp │ └── Single_Linked_List.cpp ├── Priority Queues │ ├── max_heap.cpp │ ├── max_priority_queue.cpp │ ├── min_index_priority_queue.cpp │ ├── min_priority_queue.cpp │ └── min_priority_stack.cpp ├── Queues & Deques │ ├── ArrayQueue.cpp │ ├── Dequeue.cpp │ └── SingleLinkedListQueue.cpp ├── Stack │ ├── ArrayStack.cpp │ └── SingleLinkedListStack.cpp ├── Suffix Array │ ├── SuffixArrayFast.cpp │ ├── SuffixArraySlow.cpp │ └── SuffixArraymed.cpp ├── Tree │ └── tree.cpp ├── Union find │ └── dsu.cpp └── readme.txt ├── atcoder-dp-contest-solutions ├── A-frog.cpp ├── B-frog2.cpp ├── C-vacation.cpp ├── D-knapsack-1.cpp ├── F-lcs.cpp ├── G-longest-path.cpp ├── H-grid-1.cpp ├── I-coins.cpp └── subset_sum_k.cpp ├── hacktober.webp ├── multidimarraydynamicallocation ├── bin │ └── Debug │ │ └── multidimarraydynamicallocation.exe ├── main.cpp ├── multidimarraydynamicallocation.cbp ├── multidimarraydynamicallocation.layout └── obj │ └── Debug │ └── main.o └── standard-template-library ├── Forward-List.cpp ├── Vector.cpp ├── deque.cpp ├── list.cpp ├── priority_queue.cpp ├── queue.cpp ├── set.cpp └── stack.cpp /AlgorithmCPP/Brian_Kernighan’s_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/AlgorithmCPP/Brian_Kernighan’s_algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/BFS_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/BFS_Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Backtracking: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Algorithms/Bellman-Ford-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Bellman-Ford-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/CPU Scheduling/RoundRobinScheduling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/CPU Scheduling/RoundRobinScheduling.cpp -------------------------------------------------------------------------------- /Algorithms/CPU Scheduling/first-come-first-serve-with-diff-arrival-time_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/CPU Scheduling/first-come-first-serve-with-diff-arrival-time_C++.cpp -------------------------------------------------------------------------------- /Algorithms/CPU Scheduling/first-come-first-serve_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/CPU Scheduling/first-come-first-serve_C++.cpp -------------------------------------------------------------------------------- /Algorithms/CPU Scheduling/priority-scheduling_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/CPU Scheduling/priority-scheduling_C++.cpp -------------------------------------------------------------------------------- /Algorithms/CPU Scheduling/shortest-job-first_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/CPU Scheduling/shortest-job-first_C++.cpp -------------------------------------------------------------------------------- /Algorithms/DFS_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/DFS_Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Coin_Exchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Dynamic Programming/Coin_Exchange.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Gold_Mine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Dynamic Programming/Gold_Mine.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Subset_Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Dynamic Programming/Subset_Sum.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/TrappingRainWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Dynamic Programming/TrappingRainWater.java -------------------------------------------------------------------------------- /Algorithms/Eculidean-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Eculidean-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Floyd-Warshall-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Floyd-Warshall-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Graphics/Bresenhams-Line_C.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Graphics/Bresenhams-Line_C.C -------------------------------------------------------------------------------- /Algorithms/Graphics/Liang-Barsky_C.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Graphics/Liang-Barsky_C.C -------------------------------------------------------------------------------- /Algorithms/Graphs/Dijkstra-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Graphs/Dijkstra-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Graphs/Rat_in_a_Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Graphs/Rat_in_a_Maze.cpp -------------------------------------------------------------------------------- /Algorithms/Graphs/dijkstraProb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Graphs/dijkstraProb.cpp -------------------------------------------------------------------------------- /Algorithms/Kadanes-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Kadanes-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Matrix Multiplication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Matrix Multiplication -------------------------------------------------------------------------------- /Algorithms/N-queen-problem_c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/N-queen-problem_c++.cpp -------------------------------------------------------------------------------- /Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/README.md -------------------------------------------------------------------------------- /Algorithms/Searching/Binary-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/Binary-search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching/Binary_Search_recc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/Binary_Search_recc.cpp -------------------------------------------------------------------------------- /Algorithms/Searching/Jump-Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/Jump-Search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching/Linear-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/Linear-search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching/Quick_Sort_Rec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/Quick_Sort_Rec.cpp -------------------------------------------------------------------------------- /Algorithms/Searching/interpolation_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Searching/interpolation_search.cpp -------------------------------------------------------------------------------- /Algorithms/Shortest_path_backtracking_c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Shortest_path_backtracking_c++.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Bubble Sort using Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Bubble Sort using Recursion.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Bubble-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Bubble-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Counting-Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Counting-Sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Heap_sortc++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Heap_sortc++.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Insertion-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Insertion-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Merge_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Merge_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Merge_sort_recc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Merge_sort_recc.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Quick Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Quick Sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Quick-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Quick-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Radix-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Radix-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Selection Sort using Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Selection Sort using Recursion.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Selection-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Selection-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/Wave-Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/Wave-Sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/bucket_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/bucket_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/comb-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/comb-sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/counting_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/counting_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Sorting/template-sorting-c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/Sorting/template-sorting-c++.cpp -------------------------------------------------------------------------------- /Algorithms/StackUsingLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/StackUsingLL.cpp -------------------------------------------------------------------------------- /Algorithms/String-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/String-Algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/kadane's.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/kadane's.py -------------------------------------------------------------------------------- /Algorithms/mergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/mergeSort.c -------------------------------------------------------------------------------- /Algorithms/optimal_merge_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/optimal_merge_pattern.cpp -------------------------------------------------------------------------------- /Algorithms/prims_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Algorithms/prims_algorithm.cpp -------------------------------------------------------------------------------- /Bit-tricks/Addition-without-arithmetic_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Bit-tricks/Addition-without-arithmetic_C++.cpp -------------------------------------------------------------------------------- /Bit-tricks/Odd-occuring_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Bit-tricks/Odd-occuring_C++.cpp -------------------------------------------------------------------------------- /Bit-tricks/Swapping-two-no_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Bit-tricks/Swapping-two-no_C++.cpp -------------------------------------------------------------------------------- /Bitwise-Hacks/Codeforces_1421A_XORwice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Bitwise-Hacks/Codeforces_1421A_XORwice.cpp -------------------------------------------------------------------------------- /Bitwise-Hacks/bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Bitwise-Hacks/bits.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Company Queries 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Company Queries 1.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Company Queries II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Company Queries II.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Distance Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Distance Queries.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Distinct Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Distinct Colors.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Increasing-Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Increasing-Array.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Missing-Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Missing-Number.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Number-Spiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Number-Spiral.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Path Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Path Queries.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Repetitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Repetitions.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Subordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Subordinates.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Subtree Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Subtree Queries.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Trailing Zeros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Trailing Zeros.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Tree Distances I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Tree Distances I -------------------------------------------------------------------------------- /CSES-Solutions/Tree Distances II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Tree Distances II.cpp -------------------------------------------------------------------------------- /CSES-Solutions/TreeDiameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/TreeDiameter.cpp -------------------------------------------------------------------------------- /CSES-Solutions/Weird-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/CSES-Solutions/Weird-Algorithm.cpp -------------------------------------------------------------------------------- /Complexity_Cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Complexity_Cheatsheet.pdf -------------------------------------------------------------------------------- /Contest/Codechef/Codechef-Sep-Cookoff-Div2/Codechef-sep-coofoff-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codechef/Codechef-Sep-Cookoff-Div2/Codechef-sep-coofoff-1.cpp -------------------------------------------------------------------------------- /Contest/Codechef/Codechef-Sep-Cookoff-Div2/Codechef-sep-coofoff-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codechef/Codechef-Sep-Cookoff-Div2/Codechef-sep-coofoff-2.cpp -------------------------------------------------------------------------------- /Contest/Codechef/Codechef-Sep-Lunchtime-Div2/Codechef-lunchtime-div2-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codechef/Codechef-Sep-Lunchtime-Div2/Codechef-lunchtime-div2-1.cpp -------------------------------------------------------------------------------- /Contest/Codechef/Codechef-Sep-Lunchtime-Div2/FLIPCARDS_LTIME112C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codechef/Codechef-Sep-Lunchtime-Div2/FLIPCARDS_LTIME112C -------------------------------------------------------------------------------- /Contest/Codechef/Codechef-Sep-Lunchtime-Div2/Ltime112b-Incadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codechef/Codechef-Sep-Lunchtime-Div2/Ltime112b-Incadd -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-605-Div3/Codeforces-605-div3-D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-605-Div3/Codeforces-605-div3-D.cpp -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-613-Div2/Codeforces-613-div2-C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-613-Div2/Codeforces-613-div2-C.cpp -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-633-Div1/Codeforces-633-div1-A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-633-Div1/Codeforces-633-div1-A.cpp -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-670-Div2/Codeforces-670-div2-A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-670-Div2/Codeforces-670-div2-A.cpp -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-82-Div2/Codeforces-82-div2-B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-82-Div2/Codeforces-82-div2-B.cpp -------------------------------------------------------------------------------- /Contest/Codeforces/Codeforces-TestingRound-16/Codeforces-16-Div2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Contest/Codeforces/Codeforces-TestingRound-16/Codeforces-16-Div2.cpp -------------------------------------------------------------------------------- /Data-structures-in-Kotlin/LinkedList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures-in-Kotlin/LinkedList.kt -------------------------------------------------------------------------------- /Data-structures-in-Kotlin/Node.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures-in-Kotlin/Node.kt -------------------------------------------------------------------------------- /Data-structures-in-Kotlin/Queue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures-in-Kotlin/Queue.kt -------------------------------------------------------------------------------- /Data-structures-in-Kotlin/Stack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures-in-Kotlin/Stack.kt -------------------------------------------------------------------------------- /Data-structures-in-Kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures-in-Kotlin/main.kt -------------------------------------------------------------------------------- /Data-structures/Arrays/ArrayOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/ArrayOperations.cpp -------------------------------------------------------------------------------- /Data-structures/Arrays/DynamicAllocation2DArrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/DynamicAllocation2DArrays.cpp -------------------------------------------------------------------------------- /Data-structures/Arrays/Find-n-unique-integers-sum-up-to-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/Find-n-unique-integers-sum-up-to-zero.cpp -------------------------------------------------------------------------------- /Data-structures/Arrays/Median_of_two_sorted_arrays_of_different_sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/Median_of_two_sorted_arrays_of_different_sizes.cpp -------------------------------------------------------------------------------- /Data-structures/Arrays/ReverseArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/ReverseArray.cpp -------------------------------------------------------------------------------- /Data-structures/Arrays/removingDuplicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Arrays/removingDuplicates.cpp -------------------------------------------------------------------------------- /Data-structures/Binary_Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Binary_Search.cpp -------------------------------------------------------------------------------- /Data-structures/Graphs/Graphsvs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Graphs/Graphsvs.java -------------------------------------------------------------------------------- /Data-structures/Linked_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Linked_List.cpp -------------------------------------------------------------------------------- /Data-structures/List/Linkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/List/Linkedlist.cpp -------------------------------------------------------------------------------- /Data-structures/List/doublyll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/List/doublyll.cpp -------------------------------------------------------------------------------- /Data-structures/List/phone directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/List/phone directory.cpp -------------------------------------------------------------------------------- /Data-structures/Queue/Circular Queue Using Circular Linked List: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Queue/Circular Queue Using Circular Linked List -------------------------------------------------------------------------------- /Data-structures/Queue/Circular_Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Queue/Circular_Queue.cpp -------------------------------------------------------------------------------- /Data-structures/Queue/Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Queue/Deque.cpp -------------------------------------------------------------------------------- /Data-structures/Queue/Queue-using-linked-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Queue/Queue-using-linked-list.cpp -------------------------------------------------------------------------------- /Data-structures/Queue/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Queue/Queue.cpp -------------------------------------------------------------------------------- /Data-structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/README.md -------------------------------------------------------------------------------- /Data-structures/Stack/Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/Stack.cpp -------------------------------------------------------------------------------- /Data-structures/Stack/Stack_using_2_queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/Stack_using_2_queues.cpp -------------------------------------------------------------------------------- /Data-structures/Stack/Stack_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/Stack_v2.cpp -------------------------------------------------------------------------------- /Data-structures/Stack/balanced_parenthesis_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/balanced_parenthesis_stack.cpp -------------------------------------------------------------------------------- /Data-structures/Stack/implementation_of_stack_using_two_queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/implementation_of_stack_using_two_queues.cpp -------------------------------------------------------------------------------- /Data-structures/Stack/stack_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Stack/stack_operations.cpp -------------------------------------------------------------------------------- /Data-structures/TRIE/StreamOfCharactersLeetCode_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/TRIE/StreamOfCharactersLeetCode_Java.java -------------------------------------------------------------------------------- /Data-structures/TRIE/Tclient_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/TRIE/Tclient_Java.java -------------------------------------------------------------------------------- /Data-structures/TRIE/TrieCode_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/TRIE/TrieCode_Java.java -------------------------------------------------------------------------------- /Data-structures/Threaded binary tree example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Threaded binary tree example.cpp -------------------------------------------------------------------------------- /Data-structures/Tree/226-invert-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Tree/226-invert-binary-tree.cpp -------------------------------------------------------------------------------- /Data-structures/Tree/Binary-tree-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Tree/Binary-tree-traversal.cpp -------------------------------------------------------------------------------- /Data-structures/Tree/LCA-of-Binary-Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Tree/LCA-of-Binary-Tree.cpp -------------------------------------------------------------------------------- /Data-structures/Tree/heap_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/Tree/heap_sort.cpp -------------------------------------------------------------------------------- /Data-structures/bst_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/bst_operations.cpp -------------------------------------------------------------------------------- /Data-structures/morris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/morris.cpp -------------------------------------------------------------------------------- /Data-structures/no_of_provinces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/no_of_provinces.cpp -------------------------------------------------------------------------------- /Data-structures/nqueen_rec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/nqueen_rec2.cpp -------------------------------------------------------------------------------- /Data-structures/ser_der.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/ser_der.cpp -------------------------------------------------------------------------------- /Data-structures/sud_rec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/sud_rec3.cpp -------------------------------------------------------------------------------- /Data-structures/vertical_trav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Data-structures/vertical_trav.cpp -------------------------------------------------------------------------------- /Games/Tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Games/Tic_tac_toe.py -------------------------------------------------------------------------------- /HackerRank-Solutions/Algorithms/Dynamic-programming/Fibonacci-modified.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Algorithms/Dynamic-programming/Fibonacci-modified.java -------------------------------------------------------------------------------- /HackerRank-Solutions/Algorithms/Dynamic-programming/Maximum-subarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Algorithms/Dynamic-programming/Maximum-subarray.java -------------------------------------------------------------------------------- /HackerRank-Solutions/Algorithms/Greedy/Priyanka-and-toys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Algorithms/Greedy/Priyanka-and-toys.java -------------------------------------------------------------------------------- /HackerRank-Solutions/Algorithms/Search/Ice-cream-parlor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Algorithms/Search/Ice-cream-parlor.java -------------------------------------------------------------------------------- /HackerRank-Solutions/Arrays/Big-sorting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Arrays/Big-sorting.java -------------------------------------------------------------------------------- /HackerRank-Solutions/Practice Problems/Athlete Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Practice Problems/Athlete Sort.py -------------------------------------------------------------------------------- /HackerRank-Solutions/Practice Problems/any_or_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Practice Problems/any_or_all.py -------------------------------------------------------------------------------- /HackerRank-Solutions/Practice Problems/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Practice Problems/arrays.py -------------------------------------------------------------------------------- /HackerRank-Solutions/Practice Problems/maximize_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/HackerRank-Solutions/Practice Problems/maximize_it.py -------------------------------------------------------------------------------- /Important-Interview-Questions/Stack-balanced-paranthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Important-Interview-Questions/Stack-balanced-paranthesis.cpp -------------------------------------------------------------------------------- /Important-Interview-Questions/Unique-number-from-pairs-by-XOR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Important-Interview-Questions/Unique-number-from-pairs-by-XOR.cpp -------------------------------------------------------------------------------- /Important-Interview-Questions/max_occurrences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Important-Interview-Questions/max_occurrences.cpp -------------------------------------------------------------------------------- /Insertion Sort/Insertion Sort.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/Insertion Sort.cbp -------------------------------------------------------------------------------- /Insertion Sort/Insertion Sort.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/Insertion Sort.depend -------------------------------------------------------------------------------- /Insertion Sort/Insertion Sort.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/Insertion Sort.layout -------------------------------------------------------------------------------- /Insertion Sort/bin/Debug/Insertion Sort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/bin/Debug/Insertion Sort.exe -------------------------------------------------------------------------------- /Insertion Sort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/main.cpp -------------------------------------------------------------------------------- /Insertion Sort/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Insertion Sort/obj/Debug/main.o -------------------------------------------------------------------------------- /InterviewBit-Solutions/Heaps/Distinct-numbers-in-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/InterviewBit-Solutions/Heaps/Distinct-numbers-in-window.cpp -------------------------------------------------------------------------------- /InterviewBit-Solutions/Heaps/LRU-cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/InterviewBit-Solutions/Heaps/LRU-cache.cpp -------------------------------------------------------------------------------- /InterviewBit-Solutions/Heaps/Merge-K-sorted-lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/InterviewBit-Solutions/Heaps/Merge-K-sorted-lists.cpp -------------------------------------------------------------------------------- /InterviewBit-Solutions/Heaps/N-max-pair-combinations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/InterviewBit-Solutions/Heaps/N-max-pair-combinations.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/LICENSE -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Best-time-to-buy-and-sell-stock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Best-time-to-buy-and-sell-stock.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Cells-with-odd-values-in-a-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Cells-with-odd-values-in-a-matrix.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Kids-with-the-greatest-number-of-candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Kids-with-the-greatest-number-of-candies.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Largest-rectangle-in-histogram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Largest-rectangle-in-histogram.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Longest Valid Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Longest Valid Parentheses.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Majority-Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Majority-Element.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Maximum-Subarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Maximum-Subarray.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Maximum-product-subarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Maximum-product-subarray.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Median_of_two_sorted_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Median_of_two_sorted_arrays.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Minimum-Number-of-Arrows-to-Burst-Balloons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Minimum-Number-of-Arrows-to-Burst-Balloons.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Minimum-time-visiting-all-points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Minimum-time-visiting-all-points.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Regular Expression Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Regular Expression Matching.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Remove covered intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Remove covered intervals.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Roman-to-Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Roman-to-Integer.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Rotate-image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Rotate-image.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/Subarray-sum-equals-k.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/Subarray-sum-equals-k.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/TrappingRainwater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/TrappingRainwater.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/TwoSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/TwoSum.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/TwoSumProb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/TwoSumProb.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/find_first_and_last_position_of_element_in_sorted_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/find_first_and_last_position_of_element_in_sorted_array.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/majority_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/majority_element.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Arrays/minimum-time-to-make-rope-colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Arrays/minimum-time-to-make-rope-colorful.py -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/10-Regular-Expression-Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/10-Regular-Expression-Matching.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/118-Pascal-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/118-Pascal-triangle.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/32-Longest-valid-parantheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/32-Longest-valid-parantheses.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/5-Longest-Palindromic-Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/5-Longest-Palindromic-Substring.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/72-Edit-Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/72-Edit-Distance.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/Coin_Change_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/Coin_Change_DP.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/HOUSE ROBBER PROBLEM II AND III.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/HOUSE ROBBER PROBLEM II AND III.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/climbing_stairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/climbing_stairs.py -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/house_robber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/house_robber.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/number-of-dice-rolls-with-target-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/number-of-dice-rolls-with-target-sum.py -------------------------------------------------------------------------------- /Leetcode-Solutions/DP/ugly-Number-II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/DP/ugly-Number-II.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/Biparte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/Biparte.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/CourseI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/CourseI.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/RottenOranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/RottenOranges.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/Routes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/Routes.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/Sliding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/Sliding.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Graph/ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Graph/ladder.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Greedy/Find Valid Matrix Given Row and Column Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Greedy/Find Valid Matrix Given Row and Column Sums.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Greedy/Minimum Add to Make Parentheses Valid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Greedy/Minimum Add to Make Parentheses Valid.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Greedy/Reduce Array Size to The Half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Greedy/Reduce Array Size to The Half.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Greedy/Split-a-string-in-balanced-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Greedy/Split-a-string-in-balanced-strings.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/141-Linked-List-Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/141-Linked-List-Cycle.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/19-Remove-Nth-Node-From-End-of-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/19-Remove-Nth-Node-From-End-of-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/206-Reverse-Linked-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/206-Reverse-Linked-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/21-Merge-Two-Sorted-Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/21-Merge-Two-Sorted-Lists.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/237-Delete-Node-in-a-Linked-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/237-Delete-Node-in-a-Linked-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/24-Swap-Nodes-in-Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/24-Swap-Nodes-in-Pairs.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/61-Rotate-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/61-Rotate-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/83-Remove-Duplicates-from-Sorted-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/83-Remove-Duplicates-from-Sorted-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/86-Partition-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/86-Partition-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/876-Middle-of-the-Linked-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/876-Middle-of-the-Linked-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Copy-List-With-Random-Pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Copy-List-With-Random-Pointer.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Linked-List-Cycle-II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Linked-List-Cycle-II.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Merge-Sorted-Lists_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Merge-Sorted-Lists_C++.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Odd-Even-Linked-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Odd-Even-Linked-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Palindrome-Linked-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Palindrome-Linked-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Remove_Linked_List_Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Remove_Linked_List_Elements.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/Reorder-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/Reorder-List.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/intersection-of-two-linked-lists_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/intersection-of-two-linked-lists_C++.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/linked-list-cycle_C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/linked-list-cycle_C++.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Linked-List/palindrome-linked-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Linked-List/palindrome-linked-list.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/CopyListWithRandomPointers1_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/CopyListWithRandomPointers1_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/CopyListWithRandomPointers2_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/CopyListWithRandomPointers2_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/FlattenMultilevelLinklist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/FlattenMultilevelLinklist.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/IntersectionOfTwoLinkedLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/IntersectionOfTwoLinkedLists.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/LRUCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/LRUCache.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/MergeKSortedLists_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/MergeKSortedLists_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/OddEvenLinkedLists_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/OddEvenLinkedLists_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/RemoveDuplicatesFromSortedList_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/RemoveDuplicatesFromSortedList_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/RemoveNthNodeFromEndOfList_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/RemoveNthNodeFromEndOfList_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/ReorderList_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/ReorderList_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/ReorderORfold.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/ReorderORfold.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/ReverseLinkedList2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/ReverseLinkedList2.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/ReverseNodesInK-Groups_Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/ReverseNodesInK-Groups_Java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/LinkedList/RotateLinkedLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/LinkedList/RotateLinkedLists.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Matrix/Rotate each ring of matrix anticlockwise by K elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Matrix/Rotate each ring of matrix anticlockwise by K elements.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Matrix/spiral-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Matrix/spiral-matrix.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Queue/622-Design-Circular-Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Queue/622-Design-Circular-Queue.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Queue/641-Design-Circular-Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Queue/641-Design-Circular-Deque.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Defanging-an-ip-address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Defanging-an-ip-address.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Detect-Capital.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Detect-Capital.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Detect-Captital.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Detect-Captital.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Longest_Substring_Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Longest_Substring_Length.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Remove-Duplicate-Characters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Remove-Duplicate-Characters.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/To-lower-case_C ++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/To-lower-case_C ++.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/Valid-Palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/Valid-Palindrome.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/longestCommonPrefix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/longestCommonPrefix.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/longest_palindromic_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/longest_palindromic_substring.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/maxOccurrence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/maxOccurrence.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/romantointeger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/romantointeger.py -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/split-array-into-fibonacci-sequence_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/split-array-into-fibonacci-sequence_java.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Strings/subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Strings/subsequence.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/257-binary-tree-paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/257-binary-tree-paths.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/96-Unique-Binary-Search-Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/96-Unique-Binary-Search-Trees.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/Path-Sum3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/Path-Sum3.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/Path_Sum3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/Path_Sum3.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/Serialize-deserialize-binary-tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/Serialize-deserialize-binary-tree.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/Vertical-Order-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/Vertical-Order-traversal.cpp -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/all-nodes-distance-k-in-binary-tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/all-nodes-distance-k-in-binary-tree.java -------------------------------------------------------------------------------- /Leetcode-Solutions/Tree/equal-tree-partition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Leetcode-Solutions/Tree/equal-tree-partition.java -------------------------------------------------------------------------------- /Logarithmic-tricks/Count-digits-of-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Logarithmic-tricks/Count-digits-of-number.cpp -------------------------------------------------------------------------------- /Logarithmic-tricks/Power-of-two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Logarithmic-tricks/Power-of-two.cpp -------------------------------------------------------------------------------- /Longest Subsequence from a numeric String divisible by K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Longest Subsequence from a numeric String divisible by K -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Countdigitsinanumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Countdigitsinanumber.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Digits-of-a-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Digits-of-a-number.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Inverse-a-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Inverse-a-number.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Prime-factorization-of-a-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Prime-factorization-of-a-number.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/PrintAllPrimesTillN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/PrintAllPrimesTillN.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/PrintFabonacciNumbersTillN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/PrintFabonacciNumbersTillN.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Pythagorean-triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Pythagorean-triplet.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Reverse-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Reverse-number.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/Rotate-a-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/Rotate-a-number.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/The-curious-case-of-benjamin-bulbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/The-curious-case-of-benjamin-bulbs.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/gcd-and-lcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/gcd-and-lcm.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/GettingStarted/printZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/GettingStarted/printZ.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/Stack-and-queues/Histogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/Stack-and-queues/Histogram.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/Stack-and-queues/Infix-conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/Stack-and-queues/Infix-conversion.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/Stack-and-queues/Postfix-evaluation-and-conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/Stack-and-queues/Postfix-evaluation-and-conversions.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/Stack-and-queues/Sliding-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/Stack-and-queues/Sliding-window.cpp -------------------------------------------------------------------------------- /Pepcoding-level-1-list/Stack-and-queues/Stock-span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Pepcoding-level-1-list/Stack-and-queues/Stock-span.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/AMR15A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/AMR15A.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/ARRPROB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/ARRPROB.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/CHGM1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/CHGM1.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/CPAIRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/CPAIRS.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/CSUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/CSUM.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/FLOW017 .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/FLOW017 .cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/MARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/MARM.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/POGOSTCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/POGOSTCK.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/ReplaceforX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/ReplaceforX.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/SNTEMPLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/SNTEMPLE.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/STRLS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/STRLS1.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/TLG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/TLG.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Arrays/TWTCLOSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Arrays/TWTCLOSE.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Codechef Problem-Covid_Pandemic_and_Long_Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Codechef Problem-Covid_Pandemic_and_Long_Queue.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/BITOBYT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/BITOBYT.java -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/CARVANS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/CARVANS.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/CHOPRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/CHOPRT.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/CHSERVE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/CHSERVE.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/FLOW008 .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/FLOW008 .cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/FLOW013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/FLOW013.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/FLOW018 .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/FLOW018 .cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/HMAPPY2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/HMAPPY2.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/ICL1902.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/ICL1902.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/MUFFINS3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/MUFFINS3.cpp -------------------------------------------------------------------------------- /Practice-codechef-solutions/Math/REMISS .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Practice-codechef-solutions/Math/REMISS .cpp -------------------------------------------------------------------------------- /Python-Pygame/follow_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Python-Pygame/follow_cursor.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/README.md -------------------------------------------------------------------------------- /Scramble_string_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Scramble_string_problem.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Arrays/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Arrays/Array.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Arrays/GenericArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Arrays/GenericArray.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Balanced Binary Search Tree/AVL Tree/AvlTreeRecursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Balanced Binary Search Tree/AVL Tree/AvlTreeRecursive.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Binary Search Tree/bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Binary Search Tree/bst.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Fenwick Tree/FenwickTreeRangeQueryPointUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Fenwick Tree/FenwickTreeRangeQueryPointUpdate.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Fenwick Tree/FenwickTreeRangeUpdatePointQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Fenwick Tree/FenwickTreeRangeUpdatePointQuery.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Hash Table/HashTableSeperateChaining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Hash Table/HashTableSeperateChaining.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Hash Table/OpenAdressingDoubleHashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Hash Table/OpenAdressingDoubleHashing.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Hash Table/OpenAdressingLinearProbing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Hash Table/OpenAdressingLinearProbing.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Hash Table/OpenAdressingQuadraticProbing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Hash Table/OpenAdressingQuadraticProbing.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Linked List/Doubly_Linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Linked List/Doubly_Linked_list.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Linked List/Single_Linked_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Linked List/Single_Linked_List.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Priority Queues/max_heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Priority Queues/max_heap.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Priority Queues/max_priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Priority Queues/max_priority_queue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Priority Queues/min_index_priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Priority Queues/min_index_priority_queue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Priority Queues/min_priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Priority Queues/min_priority_queue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Priority Queues/min_priority_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Priority Queues/min_priority_stack.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Queues & Deques/ArrayQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Queues & Deques/ArrayQueue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Queues & Deques/Dequeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Queues & Deques/Dequeue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Queues & Deques/SingleLinkedListQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Queues & Deques/SingleLinkedListQueue.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Stack/ArrayStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Stack/ArrayStack.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Stack/SingleLinkedListStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Stack/SingleLinkedListStack.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Suffix Array/SuffixArrayFast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Suffix Array/SuffixArrayFast.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Suffix Array/SuffixArraySlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Suffix Array/SuffixArraySlow.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Suffix Array/SuffixArraymed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Suffix Array/SuffixArraymed.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Tree/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Tree/tree.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/Union find/dsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/Union find/dsu.cpp -------------------------------------------------------------------------------- /Willam fiset DSA c++ translated code/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/Willam fiset DSA c++ translated code/readme.txt -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/A-frog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/A-frog.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/B-frog2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/B-frog2.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/C-vacation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/C-vacation.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/D-knapsack-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/D-knapsack-1.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/F-lcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/F-lcs.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/G-longest-path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/G-longest-path.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/H-grid-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/H-grid-1.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/I-coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/I-coins.cpp -------------------------------------------------------------------------------- /atcoder-dp-contest-solutions/subset_sum_k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/atcoder-dp-contest-solutions/subset_sum_k.cpp -------------------------------------------------------------------------------- /hacktober.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/hacktober.webp -------------------------------------------------------------------------------- /multidimarraydynamicallocation/bin/Debug/multidimarraydynamicallocation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/multidimarraydynamicallocation/bin/Debug/multidimarraydynamicallocation.exe -------------------------------------------------------------------------------- /multidimarraydynamicallocation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/multidimarraydynamicallocation/main.cpp -------------------------------------------------------------------------------- /multidimarraydynamicallocation/multidimarraydynamicallocation.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/multidimarraydynamicallocation/multidimarraydynamicallocation.cbp -------------------------------------------------------------------------------- /multidimarraydynamicallocation/multidimarraydynamicallocation.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/multidimarraydynamicallocation/multidimarraydynamicallocation.layout -------------------------------------------------------------------------------- /multidimarraydynamicallocation/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/multidimarraydynamicallocation/obj/Debug/main.o -------------------------------------------------------------------------------- /standard-template-library/Forward-List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/Forward-List.cpp -------------------------------------------------------------------------------- /standard-template-library/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/Vector.cpp -------------------------------------------------------------------------------- /standard-template-library/deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/deque.cpp -------------------------------------------------------------------------------- /standard-template-library/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/list.cpp -------------------------------------------------------------------------------- /standard-template-library/priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/priority_queue.cpp -------------------------------------------------------------------------------- /standard-template-library/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/queue.cpp -------------------------------------------------------------------------------- /standard-template-library/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/set.cpp -------------------------------------------------------------------------------- /standard-template-library/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cp-geeks-adgitm/Hacktoberfest/HEAD/standard-template-library/stack.cpp --------------------------------------------------------------------------------