├── .github ├── FUNDING.yml └── workflows │ └── metrics.yml ├── 1]_Data Structures ├── 1]_Array │ ├── 1]_1DArray │ │ └── Array Problems │ │ │ ├── Coin Change Problem.cpp │ │ │ ├── Find_Missing_And_Repeating.cpp │ │ │ ├── Maximum Index.cpp │ │ │ ├── Minimum Platforms.cpp │ │ │ ├── Peak element.cpp │ │ │ ├── ReverseAnArray.cpp │ │ │ ├── Stock span problem.cpp │ │ │ └── buy_&_sell_stocks.py │ ├── Daily_Temperatures.py │ ├── Design_HashMap.py │ ├── Find_Pivot_Index.py │ ├── Find_the_Highest_Altitude.py │ ├── Kadane_Algorithm.cpp │ ├── Kadane_Algorithm.exe │ ├── Maximum_Average_Subarray_I.py │ ├── README.md │ └── buy_&_sell_stocks.cpp ├── 2]_Linked List │ ├── 10_insertinginsorted.c │ ├── 11_deletingnode.c │ ├── 12_checksorting.c │ ├── 13_removeduplicates.c │ ├── 14_reversinglist.c │ ├── 15_concatenation.c │ ├── 16_merginglists.c │ ├── 17_loopcheck.c │ ├── 18_circularlinkedlist.c │ ├── 19_insertingincircularlinkedlist.c │ ├── 1_makinglinkedlist.c │ ├── 20_deletingincircularLL.c │ ├── 21_doublelinkedlist.c │ ├── 22_insertingindoubleLL.c │ ├── 23_reversedoubleLL.c │ ├── 24_polynomial.c │ ├── 25_polynomialaddition.c │ ├── 26_polynomialmultiplication.c │ ├── 27_sortingLL.c │ ├── 28_middleoftheLinkedList.cpp │ ├── 2_displayinglinkedlist.c │ ├── 3_countingnodes.c │ ├── 4_sumofallelements.c │ ├── 5_maximumelement.c │ ├── 6_searchinginlinkedlist.c │ ├── 7_improvingsearching.c │ ├── 8_insertingnode.c │ ├── 9_insertlast.c │ ├── Linked List Problems │ │ ├── Circular_LinkedList.c │ │ ├── Doublelinkedlist.c │ │ ├── LinkedListCycle.py │ │ ├── Polynomialadditon.c │ │ ├── README.md │ │ ├── ReverseLinkedlist.c │ │ ├── SearchingLinkedlist.c │ │ ├── SortingLinkedlist.c │ │ ├── mergetwosortedlinkedlists.py │ │ └── stackusinglinkedlist.c │ ├── README.md │ ├── create_a_LL.py │ └── middle_of_the_linked_list.cpp ├── 3]_Stack │ ├── Paranthesischeck.c │ ├── Postfixvevaluation.c │ ├── README.md │ ├── Stackoperation.c │ ├── Stackusinglinkedlist.c │ ├── StringPalindromeusingstack.c │ ├── Towerofhanoi.c │ ├── implemenation_of_stack_using_queue.cpp │ ├── infixtopostfix.c │ ├── nextGreaterElement.cpp │ ├── stack.py │ └── validParenthesis.py ├── 4]_Queue │ ├── 1]_Simple Queue │ │ ├── N_queues.cpp │ │ ├── QueueReversal.cpp │ │ ├── Queue_Implementation.py │ │ └── README.md │ ├── 2]_Circular Queue │ │ └── README.md │ ├── 3]_Priority Queue │ │ ├── Priorityqueue.c │ │ └── README.md │ ├── 4]_Double Ended Queue │ │ └── README.md │ ├── 5]_Deueue │ │ └── README.md │ └── README.md ├── 5]_Tree │ ├── 1]_Generic Tree │ │ └── README.md │ ├── 2]_Binary Tree │ │ ├── Binary_Tree.cpp │ │ ├── README.md │ │ └── binaryTree.py │ ├── 3]_Binary Search Tree │ │ └── README.md │ ├── 4]_Binary Indexed Tree │ │ ├── Binary_Indexed_Tree.cpp │ │ └── README.md │ ├── 5]_Segment Tree │ │ ├── Merge_Sort_Tree.cpp │ │ └── README.md │ ├── 6]_Trie │ │ └── README.md │ ├── 7]_Heap │ │ └── README.md │ └── 8]_Hashing │ │ └── README.md ├── 6]_Graph │ ├── Dijkstra.cpp │ ├── README.md │ └── SumOfDistances.cpp ├── 7]_Trie │ ├── Concatinated_Words.cpp │ ├── Implement_Trie.cpp │ ├── Longest_Common_Prefix.py │ ├── Palindrome_Pairs.cpp │ ├── Prefix_Tree.py │ ├── README.md │ ├── Word Search II.cpp │ └── Word_Break.py ├── 8]_Segment Tree │ ├── Max_Query_In_Range.cpp │ ├── README.md │ ├── Range_Sum_Query.cpp │ └── segtree_lazy_propagation.cpp ├── README.md ├── links.txt └── source │ ├── 10989587.jpg │ └── dsa.png ├── 2]_Algorithms ├── 0]_Basics │ └── README.md ├── 10]_Graphs │ ├── Bellman_Ford_Algorithm.cpp │ ├── Depth_first_search_Algorithm.cpp │ ├── Floyd_warshall_algorithm.cpp │ ├── Graph - Topological Sort.cpp │ ├── KosaRaju's_Algorithm.cpp │ ├── Kruskals_Algorithm.cpp │ └── Prims_Algorithm.cpp ├── 1]_Searching │ ├── C++ │ │ ├── binarySearch.cpp │ │ ├── linearSearch.cpp │ │ └── readme.md │ ├── README.md │ ├── Search_in_Rotated_Sorted_Array.py │ ├── Source │ │ ├── Binary_search.gif │ │ └── binary-search-sequence-search.gif │ ├── _01]_Linear Search.py │ └── _02]_Binary Search.py ├── 2]_Sorting │ ├── Divide_Two_Integers.py │ ├── README.md │ ├── Sorting in C++ │ │ ├── Bubblesort.cpp │ │ ├── Countingsort.cpp │ │ ├── Heapsort.cpp │ │ ├── Insertionsort.cpp │ │ ├── Mergesort.cpp │ │ ├── Quicksort.cpp │ │ ├── Radixsort.cpp │ │ ├── Selectionsort.cpp │ │ ├── heapSort.c │ │ ├── insertionSort.c │ │ ├── mergeSort.c │ │ ├── merge_sort.cpp │ │ ├── quickSort.c │ │ └── selectionSort.c │ ├── Source │ │ ├── Bubble_sort.gif │ │ ├── Insertion-sort.gif │ │ ├── Quicksort.png │ │ ├── Redox.png │ │ ├── Selection-Sort.webp │ │ └── _MergeSort.cpp │ ├── _01]_Bubble Sort.py │ ├── _02]_Selection Sort.py │ ├── _03]_Insertion Sort.py │ ├── _04]_Merge Sort.py │ ├── _05]_Quick Sort.py │ ├── _06]_Heap Sort.py │ ├── _07]_Count Sort.py │ ├── _08]_Bucket Sort.py │ ├── _09]_Radix Sort.py │ └── _10]_Shell Sort.py ├── 3]_BinarySearch │ ├── First_and_Last_Position.py │ ├── README.md │ ├── Search Insert Position.py │ ├── _1]_Binary Search.py │ ├── _2]_Binary Search on Reverse Sorted Array.py │ ├── source │ │ └── Screenshot 2022-07-17 103807.png │ └── square_root using bin_search.cpp ├── 4]_Strings │ ├── Is_Subsequence.py │ ├── KMP_Algo_Pattern_Matching │ ├── Longest_Palindromic_Substr.cpping │ ├── Merge_Strings_Alternately.py │ ├── Minimum_Window_Substring.cpp │ ├── Palindrome_Number.cpp │ ├── README.md │ ├── String_to_Integer_(atoi).cpp │ ├── Substring_with_Concatenation_of_All_Words.py │ ├── Zigzag_Conversion.c++ │ ├── all_substrings_of_string.py │ └── isPalindrome.py ├── 5]_Recursion │ ├── README.md │ ├── Recursion Problems │ │ ├── README.md │ │ └── source │ │ │ ├── Tower_of_Hanoi.webp │ │ │ ├── Tower_of_Hanoibg.webp │ │ │ └── rb.jpg │ └── code.chunk.py.txt ├── 6]_Backtracking │ ├── N - Queen Problem Using Backtracking.cpp │ ├── N-Queen Problem.cpp │ ├── README.md │ └── m_graph_coloring_problem.cpp ├── 7]_Greedy │ ├── Dijkstra.cpp │ ├── Job_Sequencing.cpp │ ├── README.md │ ├── Smallest_Range_covering_elements_from_k_lists.cpp │ ├── kadane.cpp │ └── maximumwraparraysum.cpp ├── 8]_Divide and Counqer │ └── README.md ├── 9]_Dynamic Programming │ ├── Longest_Palindromic_Substring.py │ ├── Matrix Chain Multiplication.py │ ├── Matrix_Chain_Multiplication.cpp │ ├── N-th_Tribonacci_Number.py │ ├── Nth_Tribonacci_Number.py │ ├── README.md │ ├── Travelling_salesman.cpp │ ├── Word_Break_Problem.cpp │ ├── Word_Break_Problem.exe │ ├── bellman-ford.cpp │ ├── fibonacciSequence.py │ ├── jump-game-ii.py │ ├── knapsack_problem.cpp │ ├── optimal substructure.cpp │ ├── rod-cutting.cpp │ ├── rod-cutting.exe │ └── subset_sum.cpp └── README.md ├── 3]_CP ├── DP │ ├── Best Time to Buy and Sell Stock I.cpp │ ├── Coin Change - Maximum ways.cpp │ ├── Count of subsets with a given sum(top-down).cpp │ ├── Count of subsets with given difference.cpp │ ├── Edit_Distance.cpp │ ├── Equal Sum Partition (top-down).cpp │ ├── Knapsack │ │ ├── zero_one Knapsack (memoized).cpp │ │ ├── zero_one Knapsack (recursive).cpp │ │ └── zero_one Knapsack (top-down).cpp │ ├── Longest Common Subsequence │ │ ├── LCS Length (Memoization).cpp │ │ ├── LCS Length (Top - Down).cpp │ │ ├── LCS Length (recursive).cpp │ │ ├── Longest Common Substring Length.cpp │ │ └── Printing LCS.cpp │ ├── Minimum Subset Sum Difference.cpp │ └── Subset Sum Problem │ │ ├── Subset Sum Problem (recursive).cpp │ │ └── Subset Sum Problem (top-down).cpp ├── Number Theory │ ├── GCD by euclid's algo.cpp │ ├── Matrix Exponentiation.cpp │ ├── Modular Exponentiation.cpp │ ├── Prime Factorisation Using Sieve.cpp │ └── nth fibonacci number.cpp ├── README.md └── bit.cpp ├── 4]_SDE Sheet's ├── Love Babbar DSA Sheet │ ├── C++ │ │ ├── 01]_Arrays │ │ │ ├── Find the Maximum and Minimum element in the Array.cpp │ │ │ ├── Kadane-Algorithm.cpp │ │ │ ├── Reverse the Array.cpp │ │ │ ├── Union of two arrays.cpp │ │ │ ├── kth-smallest-element.cpp │ │ │ ├── largest-sum-contiguious-subarray.cpp │ │ │ └── move-all-negative-elements.cpp │ │ ├── 02]_Arrays Part-II │ │ │ └── Rotate Matrix by 90 degrees.cpp │ │ ├── README.md │ │ └── String │ │ │ ├── Word Wrap .cpp │ │ │ ├── check-string-palindrome.cpp │ │ │ ├── duplicates-in-input-string.cpp │ │ │ └── reverse-string.cpp │ ├── FINAL450.xlsx │ └── Python │ │ └── README.md ├── README.md └── Strivers SDE Sheet │ ├── Day 01 [Arrays] │ ├── KadaneAlgorithm.cpp │ ├── Next Permutation.cpp │ ├── PascalTriangle.cpp │ ├── README.md │ ├── Set_Matrix_Zeroes.cpp │ ├── Set_Matrix_Zeroes.java │ ├── Sort an array of 0’s 1’s 2’s.cpp │ └── Stock Buy And Sell.cpp │ ├── Day 02 [Arrays Part-II] │ ├── Count_Inversions.cpp │ ├── Find_the_Duplicate_Number.cpp │ ├── MergeOverlappingSubintervals.cpp │ ├── MergeTwoSortedArrays.cpp │ ├── Merge_Intervals.cpp │ ├── Repeat and Missing Number.cpp │ ├── Rotate_Matrix.cpp │ └── Rotate_Matrix.java │ ├── Day 03 [Arrays Part-III] │ ├── Count Reverse Pairs.cpp │ ├── Grid Unique Paths.cpp │ ├── Pow(X,n).cpp │ ├── README.md │ └── majority element │ ├── Day 04 [Arrays Part-IV] │ ├── 2-Sum-Problem.py │ ├── 4 Sum.cpp │ ├── 4sum.java │ ├── Count number of subarrays with given Xor K.cpp │ ├── Longest Subarray Zero Sum.cpp │ ├── Longest Substring without repeat.cpp │ ├── LongestConsecutiveSequence.java │ └── README.md │ ├── Day 05 [Linked List] │ ├── Add_Two_Numbers.cpp │ ├── Delete_Node_in_a_Linked_List.cpp │ ├── Merge_Two_Sorted_Lists.cpp │ ├── Middle_of_linked_list.cpp │ ├── README.md │ ├── Remove_Nth_Node_From_End_of_List.cpp │ └── Reverse_a_linked_list.cpp │ ├── Day 06 [Linked List Part-II] │ └── README.md │ ├── Day 07 [Linked List and Arrays] │ └── README.md │ ├── Day 08 [Greedy Algorithm] │ └── README.md │ ├── Day 09 [Recursion] │ ├── N_Queen_Problem.cpp │ ├── README.md │ └── Subset_Sums.cpp │ ├── Day 10 [Recursion and Backtracking] │ └── README.md │ ├── Day 11 [Binary Search] │ └── README.md │ ├── Day 12 [Heaps] │ └── README.md │ ├── Day 13 [Stack and Queue] │ └── README.md │ ├── Day 14 [Stack and Queue Part-II] │ ├── README.md │ └── Rotten Orange (Using BFS).cpp │ ├── Day 15 [String] │ └── README.md │ ├── Day 16 [String Part-II] │ ├── Count_And_Say.cpp │ └── README.md │ ├── Day 17 [Binary Tree] │ ├── Binary_Tree_Inorder_Traversal.cpp │ ├── Binary_Tree_Postorder_Traversal.cpp │ ├── Binary_Tree_Preorder_Traversal.cpp │ └── README.md │ ├── Day 18 [Binary Tree part-II] │ ├── Balanced_Binary_Tree.cpp │ ├── Binary_Tree_Zigzag_Level_Order_Traversal.cpp │ ├── Diameter_of_Binary_Tree.cpp │ ├── Lowest_Common_Ancester_of_a_Binary_Tree.cpp │ ├── Maximum_Depth_of_Binary_tree.cpp │ └── README.md │ ├── Day 19 [Binary Tree part-III] │ ├── Maximum_Path_Sum.cpp │ ├── README.md │ └── Symmetric_Binary_Tree.cpp │ ├── Day 20 [Binary Search Tree] │ └── README.md │ ├── Day 21 [Binary Search Tree Part-II] │ └── README.md │ ├── Day 22 [Binary Trees[Miscellaneous]] │ └── README.md │ ├── Day 23 [Graph] │ ├── Detect A Cycle in Directed Graph using DFS.cpp │ └── README.md │ ├── Day 24 [Graph Part-II] │ └── README.md │ ├── Day 25 [Dynamic Programming] │ ├── LCS.java │ ├── LCS_SpaceOptimized.cpp │ ├── README.md │ └── editDistance.java │ ├── Day 26 [Dynamic Programming Part-II] │ └── README.md │ ├── Day 27 [Trie] │ ├── Implement_Trie.cpp │ └── README.md │ ├── Day 28 [Operating System] │ └── README.md │ ├── Day 29 [DBMS] │ └── README.md │ ├── Day 30 [Computer Networks] │ └── README.md │ ├── Day 31 [Project Overview] │ └── README.md │ └── Link.txt ├── 5]_Online_MCQ's Round └── README.md ├── 6]_Core Subjects ├── DBMS Resources .pdf ├── README.md └── SQL NOTES.pdf ├── 7]_Projects └── README.md ├── 8]_CPU Scheduling Algorithms C++ ├── 1stIn1stOut.cpp ├── Best Fit.cpp ├── First Fit.cpp ├── Worst Fit.cpp ├── banker.c ├── lab1.cpp └── small to big- bouble slot - os.cpp ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── etc └── CREDITS.md ├── images ├── EX1.jpg ├── Handshake.gif ├── hacktoberfest2022.png └── imgInFuture │ ├── 1_TuJ3FO1cxXR12fNZAlWF0Q.jpeg │ └── data-structures-time-complexity-lists-arrays-stacks-queues-hash-maps-sets-large.jpg └── metrics.plugin.people.repository.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/.github/workflows/metrics.yml -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Coin Change Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Coin Change Problem.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Find_Missing_And_Repeating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Find_Missing_And_Repeating.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Maximum Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Maximum Index.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Minimum Platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Minimum Platforms.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Peak element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Peak element.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/ReverseAnArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/ReverseAnArray.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Stock span problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/Stock span problem.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/1]_1DArray/Array Problems/buy_&_sell_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/1]_1DArray/Array Problems/buy_&_sell_stocks.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Daily_Temperatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Daily_Temperatures.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Design_HashMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Design_HashMap.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Find_Pivot_Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Find_Pivot_Index.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Find_the_Highest_Altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Find_the_Highest_Altitude.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Kadane_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Kadane_Algorithm.cpp -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Kadane_Algorithm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Kadane_Algorithm.exe -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/Maximum_Average_Subarray_I.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/Maximum_Average_Subarray_I.py -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/README.md: -------------------------------------------------------------------------------- 1 | # 📏 Array -------------------------------------------------------------------------------- /1]_Data Structures/1]_Array/buy_&_sell_stocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/1]_Array/buy_&_sell_stocks.cpp -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/10_insertinginsorted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/10_insertinginsorted.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/11_deletingnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/11_deletingnode.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/12_checksorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/12_checksorting.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/13_removeduplicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/13_removeduplicates.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/14_reversinglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/14_reversinglist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/15_concatenation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/15_concatenation.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/16_merginglists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/16_merginglists.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/17_loopcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/17_loopcheck.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/18_circularlinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/18_circularlinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/19_insertingincircularlinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/19_insertingincircularlinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/1_makinglinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/1_makinglinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/20_deletingincircularLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/20_deletingincircularLL.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/21_doublelinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/21_doublelinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/22_insertingindoubleLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/22_insertingindoubleLL.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/23_reversedoubleLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/23_reversedoubleLL.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/24_polynomial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/24_polynomial.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/25_polynomialaddition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/25_polynomialaddition.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/26_polynomialmultiplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/26_polynomialmultiplication.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/27_sortingLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/27_sortingLL.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/28_middleoftheLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/28_middleoftheLinkedList.cpp -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/2_displayinglinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/2_displayinglinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/3_countingnodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/3_countingnodes.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/4_sumofallelements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/4_sumofallelements.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/5_maximumelement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/5_maximumelement.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/6_searchinginlinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/6_searchinginlinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/7_improvingsearching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/7_improvingsearching.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/8_insertingnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/8_insertingnode.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/9_insertlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/9_insertlast.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/Circular_LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/Circular_LinkedList.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/Doublelinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/Doublelinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/LinkedListCycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/LinkedListCycle.py -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/Polynomialadditon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/Polynomialadditon.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/README.md -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/ReverseLinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/ReverseLinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/SearchingLinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/SearchingLinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/SortingLinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/SortingLinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/mergetwosortedlinkedlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/mergetwosortedlinkedlists.py -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/Linked List Problems/stackusinglinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/Linked List Problems/stackusinglinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/README.md: -------------------------------------------------------------------------------- 1 | # ⛓️ Linked List -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/create_a_LL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/create_a_LL.py -------------------------------------------------------------------------------- /1]_Data Structures/2]_Linked List/middle_of_the_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/2]_Linked List/middle_of_the_linked_list.cpp -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/Paranthesischeck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/Paranthesischeck.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/Postfixvevaluation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/Postfixvevaluation.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/README.md: -------------------------------------------------------------------------------- 1 | # 🔩 Stack -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/Stackoperation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/Stackoperation.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/Stackusinglinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/Stackusinglinkedlist.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/StringPalindromeusingstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/StringPalindromeusingstack.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/Towerofhanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/Towerofhanoi.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/implemenation_of_stack_using_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/implemenation_of_stack_using_queue.cpp -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/infixtopostfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/infixtopostfix.c -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/nextGreaterElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/nextGreaterElement.cpp -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/stack.py -------------------------------------------------------------------------------- /1]_Data Structures/3]_Stack/validParenthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/3]_Stack/validParenthesis.py -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/1]_Simple Queue/N_queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/4]_Queue/1]_Simple Queue/N_queues.cpp -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/1]_Simple Queue/QueueReversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/4]_Queue/1]_Simple Queue/QueueReversal.cpp -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/1]_Simple Queue/Queue_Implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/4]_Queue/1]_Simple Queue/Queue_Implementation.py -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/1]_Simple Queue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/2]_Circular Queue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/3]_Priority Queue/Priorityqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/4]_Queue/3]_Priority Queue/Priorityqueue.c -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/3]_Priority Queue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/4]_Double Ended Queue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/5]_Deueue/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/4]_Queue/README.md: -------------------------------------------------------------------------------- 1 | # 🪜Queue -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/1]_Generic Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/2]_Binary Tree/Binary_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/5]_Tree/2]_Binary Tree/Binary_Tree.cpp -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/2]_Binary Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/2]_Binary Tree/binaryTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/5]_Tree/2]_Binary Tree/binaryTree.py -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/3]_Binary Search Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/4]_Binary Indexed Tree/Binary_Indexed_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/5]_Tree/4]_Binary Indexed Tree/Binary_Indexed_Tree.cpp -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/4]_Binary Indexed Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/5]_Segment Tree/Merge_Sort_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/5]_Tree/5]_Segment Tree/Merge_Sort_Tree.cpp -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/5]_Segment Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/6]_Trie/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/7]_Heap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/5]_Tree/7]_Heap/README.md -------------------------------------------------------------------------------- /1]_Data Structures/5]_Tree/8]_Hashing/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/6]_Graph/Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/6]_Graph/Dijkstra.cpp -------------------------------------------------------------------------------- /1]_Data Structures/6]_Graph/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1]_Data Structures/6]_Graph/SumOfDistances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/6]_Graph/SumOfDistances.cpp -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Concatinated_Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Concatinated_Words.cpp -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Implement_Trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Implement_Trie.cpp -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Longest_Common_Prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Longest_Common_Prefix.py -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Palindrome_Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Palindrome_Pairs.cpp -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Prefix_Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Prefix_Tree.py -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/README.md -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Word Search II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Word Search II.cpp -------------------------------------------------------------------------------- /1]_Data Structures/7]_Trie/Word_Break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/7]_Trie/Word_Break.py -------------------------------------------------------------------------------- /1]_Data Structures/8]_Segment Tree/Max_Query_In_Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/8]_Segment Tree/Max_Query_In_Range.cpp -------------------------------------------------------------------------------- /1]_Data Structures/8]_Segment Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/8]_Segment Tree/README.md -------------------------------------------------------------------------------- /1]_Data Structures/8]_Segment Tree/Range_Sum_Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/8]_Segment Tree/Range_Sum_Query.cpp -------------------------------------------------------------------------------- /1]_Data Structures/8]_Segment Tree/segtree_lazy_propagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/8]_Segment Tree/segtree_lazy_propagation.cpp -------------------------------------------------------------------------------- /1]_Data Structures/README.md: -------------------------------------------------------------------------------- 1 | # Data Structures 2 | -------------------------------------------------------------------------------- /1]_Data Structures/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/links.txt -------------------------------------------------------------------------------- /1]_Data Structures/source/10989587.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/source/10989587.jpg -------------------------------------------------------------------------------- /1]_Data Structures/source/dsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/1]_Data Structures/source/dsa.png -------------------------------------------------------------------------------- /2]_Algorithms/0]_Basics/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Bellman_Ford_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Bellman_Ford_Algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Depth_first_search_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Depth_first_search_Algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Floyd_warshall_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Floyd_warshall_algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Graph - Topological Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Graph - Topological Sort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/KosaRaju's_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/KosaRaju's_Algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Kruskals_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Kruskals_Algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/10]_Graphs/Prims_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/10]_Graphs/Prims_Algorithm.cpp -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/C++/binarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/C++/binarySearch.cpp -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/C++/linearSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/C++/linearSearch.cpp -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/C++/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/C++/readme.md -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/README.md -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/Search_in_Rotated_Sorted_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/Search_in_Rotated_Sorted_Array.py -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/Source/Binary_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/Source/Binary_search.gif -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/Source/binary-search-sequence-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/Source/binary-search-sequence-search.gif -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/_01]_Linear Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/_01]_Linear Search.py -------------------------------------------------------------------------------- /2]_Algorithms/1]_Searching/_02]_Binary Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/1]_Searching/_02]_Binary Search.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Divide_Two_Integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Divide_Two_Integers.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/README.md -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Bubblesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Bubblesort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Countingsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Countingsort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Heapsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Heapsort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Insertionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Insertionsort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Mergesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Mergesort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Quicksort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Quicksort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Radixsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Radixsort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/Selectionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/Selectionsort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/heapSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/heapSort.c -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/insertionSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/insertionSort.c -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/mergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/mergeSort.c -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/merge_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/merge_sort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/quickSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/quickSort.c -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Sorting in C++/selectionSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Sorting in C++/selectionSort.c -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/Bubble_sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/Bubble_sort.gif -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/Insertion-sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/Insertion-sort.gif -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/Quicksort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/Quicksort.png -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/Redox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/Redox.png -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/Selection-Sort.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/Selection-Sort.webp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/Source/_MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/Source/_MergeSort.cpp -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_01]_Bubble Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_01]_Bubble Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_02]_Selection Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_02]_Selection Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_03]_Insertion Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_03]_Insertion Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_04]_Merge Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_04]_Merge Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_05]_Quick Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_05]_Quick Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_06]_Heap Sort.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_07]_Count Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_07]_Count Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_08]_Bucket Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_08]_Bucket Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_09]_Radix Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_09]_Radix Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/2]_Sorting/_10]_Shell Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/2]_Sorting/_10]_Shell Sort.py -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/First_and_Last_Position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/First_and_Last_Position.py -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/README.md -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/Search Insert Position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/Search Insert Position.py -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/_1]_Binary Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/_1]_Binary Search.py -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/_2]_Binary Search on Reverse Sorted Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/_2]_Binary Search on Reverse Sorted Array.py -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/source/Screenshot 2022-07-17 103807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/source/Screenshot 2022-07-17 103807.png -------------------------------------------------------------------------------- /2]_Algorithms/3]_BinarySearch/square_root using bin_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/3]_BinarySearch/square_root using bin_search.cpp -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Is_Subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Is_Subsequence.py -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/KMP_Algo_Pattern_Matching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/KMP_Algo_Pattern_Matching -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Longest_Palindromic_Substr.cpping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Longest_Palindromic_Substr.cpping -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Merge_Strings_Alternately.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Merge_Strings_Alternately.py -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Minimum_Window_Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Minimum_Window_Substring.cpp -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Palindrome_Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Palindrome_Number.cpp -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/String_to_Integer_(atoi).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/String_to_Integer_(atoi).cpp -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Substring_with_Concatenation_of_All_Words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Substring_with_Concatenation_of_All_Words.py -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/Zigzag_Conversion.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/Zigzag_Conversion.c++ -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/all_substrings_of_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/all_substrings_of_string.py -------------------------------------------------------------------------------- /2]_Algorithms/4]_Strings/isPalindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/4]_Strings/isPalindrome.py -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/README.md: -------------------------------------------------------------------------------- 1 | # ♻️ Recursion -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/Recursion Problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/5]_Recursion/Recursion Problems/README.md -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/Recursion Problems/source/Tower_of_Hanoi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/5]_Recursion/Recursion Problems/source/Tower_of_Hanoi.webp -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/Recursion Problems/source/Tower_of_Hanoibg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/5]_Recursion/Recursion Problems/source/Tower_of_Hanoibg.webp -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/Recursion Problems/source/rb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/5]_Recursion/Recursion Problems/source/rb.jpg -------------------------------------------------------------------------------- /2]_Algorithms/5]_Recursion/code.chunk.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/5]_Recursion/code.chunk.py.txt -------------------------------------------------------------------------------- /2]_Algorithms/6]_Backtracking/N - Queen Problem Using Backtracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/6]_Backtracking/N - Queen Problem Using Backtracking.cpp -------------------------------------------------------------------------------- /2]_Algorithms/6]_Backtracking/N-Queen Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/6]_Backtracking/N-Queen Problem.cpp -------------------------------------------------------------------------------- /2]_Algorithms/6]_Backtracking/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/6]_Backtracking/m_graph_coloring_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/6]_Backtracking/m_graph_coloring_problem.cpp -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/7]_Greedy/Dijkstra.cpp -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/Job_Sequencing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/7]_Greedy/Job_Sequencing.cpp -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/Smallest_Range_covering_elements_from_k_lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/7]_Greedy/Smallest_Range_covering_elements_from_k_lists.cpp -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/7]_Greedy/kadane.cpp -------------------------------------------------------------------------------- /2]_Algorithms/7]_Greedy/maximumwraparraysum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/7]_Greedy/maximumwraparraysum.cpp -------------------------------------------------------------------------------- /2]_Algorithms/8]_Divide and Counqer/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Longest_Palindromic_Substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Longest_Palindromic_Substring.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Matrix Chain Multiplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Matrix Chain Multiplication.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Matrix_Chain_Multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Matrix_Chain_Multiplication.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/N-th_Tribonacci_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/N-th_Tribonacci_Number.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Nth_Tribonacci_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Nth_Tribonacci_Number.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Travelling_salesman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Travelling_salesman.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Word_Break_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Word_Break_Problem.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/Word_Break_Problem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/Word_Break_Problem.exe -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/bellman-ford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/bellman-ford.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/fibonacciSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/fibonacciSequence.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/jump-game-ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/jump-game-ii.py -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/knapsack_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/knapsack_problem.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/optimal substructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/optimal substructure.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/rod-cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/rod-cutting.cpp -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/rod-cutting.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/rod-cutting.exe -------------------------------------------------------------------------------- /2]_Algorithms/9]_Dynamic Programming/subset_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/2]_Algorithms/9]_Dynamic Programming/subset_sum.cpp -------------------------------------------------------------------------------- /2]_Algorithms/README.md: -------------------------------------------------------------------------------- 1 | # 🎲Algorithms -------------------------------------------------------------------------------- /3]_CP/DP/Best Time to Buy and Sell Stock I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Best Time to Buy and Sell Stock I.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Coin Change - Maximum ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Coin Change - Maximum ways.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Count of subsets with a given sum(top-down).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Count of subsets with a given sum(top-down).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Count of subsets with given difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Count of subsets with given difference.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Edit_Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Edit_Distance.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Equal Sum Partition (top-down).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Equal Sum Partition (top-down).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Knapsack/zero_one Knapsack (memoized).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Knapsack/zero_one Knapsack (memoized).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Knapsack/zero_one Knapsack (recursive).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Knapsack/zero_one Knapsack (recursive).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Knapsack/zero_one Knapsack (top-down).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Knapsack/zero_one Knapsack (top-down).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Longest Common Subsequence/LCS Length (Memoization).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Longest Common Subsequence/LCS Length (Memoization).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Longest Common Subsequence/LCS Length (Top - Down).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Longest Common Subsequence/LCS Length (Top - Down).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Longest Common Subsequence/LCS Length (recursive).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Longest Common Subsequence/LCS Length (recursive).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Longest Common Subsequence/Longest Common Substring Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Longest Common Subsequence/Longest Common Substring Length.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Longest Common Subsequence/Printing LCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Longest Common Subsequence/Printing LCS.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Minimum Subset Sum Difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Minimum Subset Sum Difference.cpp -------------------------------------------------------------------------------- /3]_CP/DP/Subset Sum Problem/Subset Sum Problem (recursive).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Subset Sum Problem/Subset Sum Problem (recursive).cpp -------------------------------------------------------------------------------- /3]_CP/DP/Subset Sum Problem/Subset Sum Problem (top-down).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/DP/Subset Sum Problem/Subset Sum Problem (top-down).cpp -------------------------------------------------------------------------------- /3]_CP/Number Theory/GCD by euclid's algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/Number Theory/GCD by euclid's algo.cpp -------------------------------------------------------------------------------- /3]_CP/Number Theory/Matrix Exponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/Number Theory/Matrix Exponentiation.cpp -------------------------------------------------------------------------------- /3]_CP/Number Theory/Modular Exponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/Number Theory/Modular Exponentiation.cpp -------------------------------------------------------------------------------- /3]_CP/Number Theory/Prime Factorisation Using Sieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/Number Theory/Prime Factorisation Using Sieve.cpp -------------------------------------------------------------------------------- /3]_CP/Number Theory/nth fibonacci number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/Number Theory/nth fibonacci number.cpp -------------------------------------------------------------------------------- /3]_CP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/README.md -------------------------------------------------------------------------------- /3]_CP/bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/3]_CP/bit.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Find the Maximum and Minimum element in the Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Find the Maximum and Minimum element in the Array.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Kadane-Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Kadane-Algorithm.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Reverse the Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Reverse the Array.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Union of two arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/Union of two arrays.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/kth-smallest-element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/kth-smallest-element.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/largest-sum-contiguious-subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/largest-sum-contiguious-subarray.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/move-all-negative-elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/01]_Arrays/move-all-negative-elements.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/02]_Arrays Part-II/Rotate Matrix by 90 degrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/02]_Arrays Part-II/Rotate Matrix by 90 degrees.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/README.md -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/Word Wrap .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/Word Wrap .cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/check-string-palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/check-string-palindrome.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/duplicates-in-input-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/duplicates-in-input-string.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/reverse-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/C++/String/reverse-string.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/FINAL450.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/FINAL450.xlsx -------------------------------------------------------------------------------- /4]_SDE Sheet's/Love Babbar DSA Sheet/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Love Babbar DSA Sheet/Python/README.md -------------------------------------------------------------------------------- /4]_SDE Sheet's/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/README.md -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/KadaneAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/KadaneAlgorithm.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Next Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Next Permutation.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/PascalTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/PascalTriangle.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/README.md -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Set_Matrix_Zeroes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Set_Matrix_Zeroes.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Set_Matrix_Zeroes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Set_Matrix_Zeroes.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Sort an array of 0’s 1’s 2’s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Sort an array of 0’s 1’s 2’s.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Stock Buy And Sell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 01 [Arrays]/Stock Buy And Sell.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Count_Inversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Count_Inversions.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Find_the_Duplicate_Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Find_the_Duplicate_Number.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/MergeOverlappingSubintervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/MergeOverlappingSubintervals.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/MergeTwoSortedArrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/MergeTwoSortedArrays.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Merge_Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Merge_Intervals.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Repeat and Missing Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Repeat and Missing Number.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Rotate_Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Rotate_Matrix.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Rotate_Matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 02 [Arrays Part-II]/Rotate_Matrix.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Count Reverse Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Count Reverse Pairs.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Grid Unique Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Grid Unique Paths.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Pow(X,n).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/Pow(X,n).cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/majority element: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 03 [Arrays Part-III]/majority element -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/2-Sum-Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/2-Sum-Problem.py -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/4 Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/4 Sum.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/4sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/4sum.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Count number of subarrays with given Xor K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Count number of subarrays with given Xor K.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Longest Subarray Zero Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Longest Subarray Zero Sum.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Longest Substring without repeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/Longest Substring without repeat.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/LongestConsecutiveSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/LongestConsecutiveSequence.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 04 [Arrays Part-IV]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Add_Two_Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Add_Two_Numbers.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Delete_Node_in_a_Linked_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Delete_Node_in_a_Linked_List.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Merge_Two_Sorted_Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Merge_Two_Sorted_Lists.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Middle_of_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Middle_of_linked_list.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Remove_Nth_Node_From_End_of_List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Remove_Nth_Node_From_End_of_List.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Reverse_a_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 05 [Linked List]/Reverse_a_linked_list.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 06 [Linked List Part-II]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 07 [Linked List and Arrays]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 08 [Greedy Algorithm]/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 09 [Recursion]/N_Queen_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 09 [Recursion]/N_Queen_Problem.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 09 [Recursion]/README.md: -------------------------------------------------------------------------------- 1 | # ♻️ Recursion -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 09 [Recursion]/Subset_Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 09 [Recursion]/Subset_Sums.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 10 [Recursion and Backtracking]/README.md: -------------------------------------------------------------------------------- 1 | # ♻️Recursion and 🔙Backtracking 2 | 3 | 4 | -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 11 [Binary Search]/README.md: -------------------------------------------------------------------------------- 1 | # 🔎Binary Search -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 12 [Heaps]/README.md: -------------------------------------------------------------------------------- 1 | # 📚Heaps -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 13 [Stack and Queue]/README.md: -------------------------------------------------------------------------------- 1 | # 🛒Stack and Queue -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 14 [Stack and Queue Part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 📝Stack and Queue Part-II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 14 [Stack and Queue Part-II]/Rotten Orange (Using BFS).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 14 [Stack and Queue Part-II]/Rotten Orange (Using BFS).cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 15 [String]/README.md: -------------------------------------------------------------------------------- 1 | # 🧵String -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 16 [String Part-II]/Count_And_Say.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 16 [String Part-II]/Count_And_Say.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 16 [String Part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 🪕String Part-II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Inorder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Inorder_Traversal.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Postorder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Postorder_Traversal.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Preorder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/Binary_Tree_Preorder_Traversal.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 17 [Binary Tree]/README.md: -------------------------------------------------------------------------------- 1 | # 🌲Binary Tree -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Balanced_Binary_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Balanced_Binary_Tree.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Binary_Tree_Zigzag_Level_Order_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Binary_Tree_Zigzag_Level_Order_Traversal.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Diameter_of_Binary_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Diameter_of_Binary_Tree.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Lowest_Common_Ancester_of_a_Binary_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Lowest_Common_Ancester_of_a_Binary_Tree.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Maximum_Depth_of_Binary_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/Maximum_Depth_of_Binary_tree.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 18 [Binary Tree part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 🌳Binary Tree part-II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 19 [Binary Tree part-III]/Maximum_Path_Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 19 [Binary Tree part-III]/Maximum_Path_Sum.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 19 [Binary Tree part-III]/README.md: -------------------------------------------------------------------------------- 1 | # 🌴Binary Tree Part-III -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 19 [Binary Tree part-III]/Symmetric_Binary_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 19 [Binary Tree part-III]/Symmetric_Binary_Tree.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 20 [Binary Search Tree]/README.md: -------------------------------------------------------------------------------- 1 | # 🍀Binary Search Tree -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 21 [Binary Search Tree Part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 🎄Binary Search Tree Part-II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 22 [Binary Trees[Miscellaneous]]/README.md: -------------------------------------------------------------------------------- 1 | # 🎀Binary Trees[Miscellaneous] -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 23 [Graph]/Detect A Cycle in Directed Graph using DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 23 [Graph]/Detect A Cycle in Directed Graph using DFS.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 23 [Graph]/README.md: -------------------------------------------------------------------------------- 1 | # 🧩Graph -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 24 [Graph Part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 🎲Graph Part-II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/LCS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/LCS.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/LCS_SpaceOptimized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/LCS_SpaceOptimized.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/README.md: -------------------------------------------------------------------------------- 1 | # 🍁Dynamic Programming Part I -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/editDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 25 [Dynamic Programming]/editDistance.java -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 26 [Dynamic Programming Part-II]/README.md: -------------------------------------------------------------------------------- 1 | # 🧭Dynamic Programming Part II -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 27 [Trie]/Implement_Trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Day 27 [Trie]/Implement_Trie.cpp -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 27 [Trie]/README.md: -------------------------------------------------------------------------------- 1 | # 🪢Trie -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 28 [Operating System]/README.md: -------------------------------------------------------------------------------- 1 | # 💽Operating System -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 29 [DBMS]/README.md: -------------------------------------------------------------------------------- 1 | # 🗃️DBMS -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 30 [Computer Networks]/README.md: -------------------------------------------------------------------------------- 1 | # 🗼Computer Network -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Day 31 [Project Overview]/README.md: -------------------------------------------------------------------------------- 1 | # 🧧Project Overview -------------------------------------------------------------------------------- /4]_SDE Sheet's/Strivers SDE Sheet/Link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/4]_SDE Sheet's/Strivers SDE Sheet/Link.txt -------------------------------------------------------------------------------- /5]_Online_MCQ's Round/README.md: -------------------------------------------------------------------------------- 1 | # 📑Online MCQ's Round1 -------------------------------------------------------------------------------- /6]_Core Subjects/DBMS Resources .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/6]_Core Subjects/DBMS Resources .pdf -------------------------------------------------------------------------------- /6]_Core Subjects/README.md: -------------------------------------------------------------------------------- 1 | # 🖊️ Core Subjects -------------------------------------------------------------------------------- /6]_Core Subjects/SQL NOTES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/6]_Core Subjects/SQL NOTES.pdf -------------------------------------------------------------------------------- /7]_Projects/README.md: -------------------------------------------------------------------------------- 1 | # 🗃️ Projects 🪀 -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/1stIn1stOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/1stIn1stOut.cpp -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/Best Fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/Best Fit.cpp -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/First Fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/First Fit.cpp -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/Worst Fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/Worst Fit.cpp -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/banker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/banker.c -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/lab1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/lab1.cpp -------------------------------------------------------------------------------- /8]_CPU Scheduling Algorithms C++/small to big- bouble slot - os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/8]_CPU Scheduling Algorithms C++/small to big- bouble slot - os.cpp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/README.md -------------------------------------------------------------------------------- /etc/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/etc/CREDITS.md -------------------------------------------------------------------------------- /images/EX1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/images/EX1.jpg -------------------------------------------------------------------------------- /images/Handshake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/images/Handshake.gif -------------------------------------------------------------------------------- /images/hacktoberfest2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/images/hacktoberfest2022.png -------------------------------------------------------------------------------- /images/imgInFuture/1_TuJ3FO1cxXR12fNZAlWF0Q.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/images/imgInFuture/1_TuJ3FO1cxXR12fNZAlWF0Q.jpeg -------------------------------------------------------------------------------- /images/imgInFuture/data-structures-time-complexity-lists-arrays-stacks-queues-hash-maps-sets-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/images/imgInFuture/data-structures-time-complexity-lists-arrays-stacks-queues-hash-maps-sets-large.jpg -------------------------------------------------------------------------------- /metrics.plugin.people.repository.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayon-ssp/The-SDE-Prep/HEAD/metrics.plugin.people.repository.svg --------------------------------------------------------------------------------