In this Article you will read about DSA roadmap, Patterns and Algorithms.
Blog
One of my post about 6 months DSA Plan is something most of the people liked
So, I thought to write this detailed article.
In this article today, we are going to each topic in detail and see what all things we need to prepare as per our target of 6-Months DSA Journey
Month 1: Basics and Arrays
Week 1: Introduction and Basics
๐ Importance of DSA
โณ Time/Space Complexity
๐งฎ Big O, Theta, Omega
๐ Linear and Binary Search
Week 2: Arrays
๐ Array basics
โ๏ธ Operations (insert, delete, traverse)
๐๏ธ 1D/2D arrays
๐ Practice
Week 3: Arrays (continued)
โ๏ธ Two-pointer technique
๐ Sliding window
๐ Practice
Week 4: Strings
๐ค String basics
๐ง Operations and functions
๐ Pattern searching (Naive, KMP, Rabin-Karp)
๐ Practice
Month 2: Linked Lists and Stacks
Week 5: Linked Lists
๐ Basics and types (Singly, Doubly, Circular)
โ๏ธ Operations
๐ Practice
Week 6: Advanced Linked Lists
๐ Advanced problems
๐ Practice
Week 7: Stacks
๐ฅ Stack basics
โ๏ธ Operations (push, pop, peek)
๐ ๏ธ Implementation
๐ Applications
๐ Practice
Week 8: Queues
๐ถ Queue basics
โ๏ธ Operations (enqueue, dequeue)
๐ ๏ธ Implementation
๐งฉ Types (simple, circular, priority)
๐ Practice
Month 3: Trees
Week 9: Trees
๐ณ Basics and types
๐ Traversals (in-order, pre-order, post-order)
Week 10: Binary Search Trees (BST)
๐ BST properties
โ๏ธ Operations
๐ Practice
Week 11: Balanced Trees
โ๏ธ AVL Trees
๐ดโซ Red-Black Trees
๐ Practice
Week 12: Heaps
โฐ๏ธ Heap basics
๐ Types (min, max)
โ๏ธ Operations
๐งฎ Priority Queue
๐ Practice
Month 4: Graphs
Week 13: Graphs
๐ Basics and types
๐ ๏ธ Representation
Week 14: Graph Traversal
๐ถโ๏ธ BFS
๐ณ DFS
๐ Practice
Week 15: Shortest Paths
๐ฃ๏ธ Dijkstra's
๐ Bellman-Ford
๐ Floyd-Warshall
๐ Practice
Week 16: Minimum Spanning Tree (MST)
๐ฒ Kruskal's
๐ชต Prim's
๐ Practice
Month 5: Advanced Topics
Week 17: Dynamic Programming (DP)
๐ค Basics
๐ง Memoization vs Tabulation
๐ Classic problems
Week 18: Advanced DP
๐งฉ Complex problems
๐ Practice
Week 19: Backtracking
๐ Basics
๐งฉ Classic problems
๐ Practice
Week 20: Greedy Algorithms
๐ก Basics
๐ Classic problems
๐ Practice
Month 6: Review and Mock Interviews
Week 21-24: Review and Practice
๐ Arrays, Strings, Linked Lists, Stacks, Queues, Trees, Heaps, Graphs, DP, Backtracking, Greedy
๐ Mixed problems
Week 25: Mock Interviews
๐ค Participate in mock interviews
๐ Solve problems on LeetCode, HackerRank, CodeChef
Week 26: Final Revision
๐ Focus on weak areas
๐ Final practice
Month 1: Foundations ๐๏ธ
1. Week 1: Introduction to DSA ๐
- Topics: Basics of Data Structures and Algorithms, Time and Space Complexity
- Tasks:
- Read introductory materials on DSA.
- Understand Big O notation, best, average, and worst-case complexities.
- Practice basic complexity calculations.
2. Week 2: Arrays and Strings ๐งต
- Topics: Arrays, Strings, Basic Operations, Sliding Window, Two Pointers
- Tasks:
- Study array operations: insertion, deletion, traversal, searching.
- Understand string manipulation techniques.
- Learn the sliding window technique and solve related problems.
- Practice two-pointer technique for array and string problems.
- Solve problems on platforms like LeetCode, HackerRank (easy level).
3. Week 3: Linked Lists ๐
- Topics: Singly Linked List, Doubly Linked List, Circular Linked List
- Tasks:
- Implement basic linked list operations.
- Solve problems involving insertion, deletion, reversal of linked lists.
- Practice medium-level problems on linked lists.
4. Week 4: Stacks and Queues ๐ฆ
- Topics: Stack, Queue, Deque, Priority Queue
- Tasks:
- Understand stack and queue operations.
- Implement stack and queue using arrays and linked lists.
- Solve problems on stack and queue applications.
Month 2: Trees and Graphs ๐ณ
1. Week 1: Trees ๐ฒ
- Topics: Binary Tree, Binary Search Tree
- Tasks:
- Learn tree traversal methods (in-order, pre-order, post-order).
- Solve problems on tree creation, traversal, and basic operations.
- Understand the properties of BST and solve related problems.
2. Week 2: Advanced Trees ๐ด
- Topics: AVL Tree, Red-Black Tree, Segment Tree, Trie
- Tasks:
- Study self-balancing trees and their rotations.
- Solve problems on insertion, deletion in AVL and Red-Black trees.
- Implement and solve problems using Segment Trees and Tries.
3. Week 3: Graphs Basics ๐บ๏ธ
- Topics: Graph Representation, DFS, BFS
- Tasks:
- Learn graph representations (adjacency matrix, list).
- Implement Depth First Search (DFS) and Breadth First Search (BFS).
- Solve basic graph traversal problems.
4. Week 4: Advanced Graphs ๐งฉ
- Topics: Dijkstraโs Algorithm, Floyd-Warshall, Topological Sort
- Tasks:
- Understand shortest path algorithms.
- Solve problems on Dijkstra's and Floyd-Warshall algorithms.
- Practice problems involving topological sorting and cycle detection.
Month 3: Recursion and Backtracking ๐
1. Week 1: Recursion Basics ๐
- Topics: Basic Recursion, Mathematical Problems
- Tasks:
- Study the principles of recursion and base cases.
- Solve problems on factorial, Fibonacci, and basic mathematical problems.
2. Week 2: Recursion Applications ๐ง
- Topics: Permutations, Combinations, Subset Sum
- Tasks:
- Solve problems involving permutations and combinations.
- Understand and implement subset sum problems using recursion.
3. Week 3: Backtracking ๐
- Topics: N-Queens, Sudoku Solver, Maze Problems
- Tasks:
- Study the concept of backtracking and its applications.
- Solve classic backtracking problems like N-Queens, Sudoku, and maze-solving.
4. Week 4: Dynamic Programming Introduction ๐
- Topics: Basics of DP, Memoization vs Tabulation
- Tasks:
- Understand the difference between memoization and tabulation.
- Solve basic DP problems like Fibonacci, Coin Change (minimum coins).
Month 4: Advanced Dynamic Programming ๐งฎ
1. Week 1: Intermediate DP Problems ๐ฏ
- Topics: Knapsack, Longest Common Subsequence
- Tasks:
- Study and implement the 0/1 Knapsack problem.
- Solve problems on LCS, LIS (Longest Increasing Subsequence).
2. Week 2: Advanced DP Problems ๐
- Topics: DP on Trees, DP with Bitmasks
- Tasks:
- Solve problems involving DP on tree structures.
- Understand and implement problems using bitmasking.
3. Week 3: DP Practice ๐๏ธ
- Topics: Practice Mixed Problems
- Tasks:
- Solve a variety of DP problems from different categories.
- Focus on problems from competitive programming platforms.
4. Week 4: Review and Reinforce ๐
- Topics: Review Key Concepts
- Tasks:
- Revise all major DP concepts and problems solved.
- Identify weak areas and reinforce them with additional practice.
Month 5: Sorting, Searching, and Miscellaneous ๐
1. Week 1: Sorting Algorithms ๐๏ธ
- Topics: Quick Sort, Merge Sort, Heap Sort
- Tasks:
- Understand and implement advanced sorting algorithms.
- Solve problems involving different sorting techniques.
2. Week 2: Searching Algorithms ๐
- Topics: Binary Search, Search Variants
- Tasks:
- Study binary search and its applications.
- Solve problems on binary search and search variants (e.g., rotated array).
3. Week 3: Miscellaneous Algorithms ๐ฒ
- Topics: Bit Manipulation, Greedy Algorithms
- Tasks:
- Learn and practice bit manipulation techniques.
- Understand the greedy approach and solve related problems.
4. Week 4: Mock Interviews and Problem Solving ๐ค
- Tasks:
- Participate in mock interviews.
- Solve a variety of problems to simulate real interview conditions.
Month 6: Mock Interviews and Final Review ๐
1. Week 1: System Design Basics ๐๏ธ
- Topics: Basic Concepts of System Design
- Tasks:
- Study the fundamentals of system design.
- Understand key components like load balancing, caching, and databases.
2. Week 2: Mock Interviews ๐ฅ
- Tasks:
- Participate in multiple mock interviews with peers or mentors.
- Focus on problem-solving speed and accuracy.
3. Week 3: Review and Reinforce ๐
- Topics: Review All Concepts
- Tasks:
- Revise key DSA concepts and problems.
- Solve problems in weaker areas identified during mocks.
4. Week 4: Final Preparation ๐
- Tasks:
- Conduct final round of mock interviews.
- Relax and prepare mentally for actual interviews.
Essential Coding Patterns for Interview Preparation
1. Two Pointers ๐
- Applications: Array and string manipulation, such as finding pairs, triplets, or subarrays with a specific sum, and partitioning arrays.
- Examples: Reverse a string, remove duplicates from sorted array, container with most water.
2. Sliding Window ๐ช
- Applications: Problems involving contiguous subarrays or substrings.
- Examples: Maximum sum subarray of size k, longest substring without repeating characters, minimum window substring.
3. Fast and Slow Pointers (Tortoise and Hare) ๐ข๐
- Applications: Cycle detection in linked lists, finding the middle of a linked list.
- Examples: Linked list cycle detection, finding the middle of a linked list, happy number.
4. Merge Intervals ๐งฉ
- Applications: Problems involving overlapping intervals.
- Examples: Merge intervals, insert interval, meeting rooms.
5. Cyclic Sort ๐
- Applications: Sorting problems where elements are in a known range.
- Examples: Find missing number, find all duplicates, find all missing numbers.
6. In-place Reversal of a Linked List ๐
- Applications: Problems involving the reversal of linked list segments.
- Examples: Reverse a linked list, reverse every k-element sub-list, reverse a sub-list.
7. Tree Depth-First Search (DFS) ๐ณ
- Applications: Problems involving tree traversal, path finding, and subtree calculations.
- Examples: Binary tree path sum, all paths for a sum, sum of path numbers.
8. Tree Breadth-First Search (BFS) ๐ฒ
- Applications: Level-order traversal of trees, shortest path in graphs.
- Examples: Binary tree level order traversal, zigzag traversal, connect level order siblings.
9. Binary Search ๐
- Applications: Search problems in sorted arrays, search space reduction.
- Examples: Order-agnostic binary search, ceiling of a number, next letter.
10. Top K Elements ๐
- Applications: Problems requiring finding the top k largest/smallest elements.
- Examples: Top k numbers, kth smallest number, k closest points to the origin.
11. K-way Merge ๐
- Applications: Merging sorted arrays, finding k closest elements.
- Examples: Merge k sorted lists, kth smallest number in M sorted lists, smallest range.
12. Topological Sort ๐
- Applications: Ordering of tasks, finding cycles in directed graphs.
- Examples: Task scheduling, alien dictionary, minimum height trees.
13. Dynamic Programming (DP) ๐
- Applications: Optimization problems, problems with overlapping subproblems.
- Examples: 0/1 Knapsack, longest common subsequence, coin change problem.
14. Greedy Algorithms ๐ก
- Applications: Optimization problems where local optimal choices lead to global optimum.
- Examples: Interval scheduling maximization, fractional knapsack, minimum cost to connect ropes.
15. Bit Manipulation ๐งฎ
- Applications: Problems involving bit operations, binary representation.
- Examples: Single number, complement of a number, count of set bits.
16. Backtracking ๐
- Applications: Problems involving search through all possible solutions.
- Examples: N-Queens, sudoku solver, subsets.
17. Mathematical Problems โโ
- Applications: Problems requiring mathematical calculations, number theory.
- Examples: GCD, prime numbers, power of two.
Essential Algorithms with Time and Space Complexities
Sorting Algorithms ๐๏ธ
1. Bubble Sort ๐พ
- Time Complexity:
- Best: O(n)
- Average: O(nยฒ)
- Worst: O(nยฒ)
- Space Complexity: O(1)
2. Selection Sort ๐
- Time Complexity:
- Best: O(nยฒ)
- Average: O(nยฒ)
- Worst: O(nยฒ)
- Space Complexity: O(1)
3. Insertion Sort ๐
- Time Complexity:
- Best: O(n)
- Average: O(nยฒ)
- Worst: O(nยฒ)
- Space Complexity: O(1)
4. Merge Sort ๐
- Time Complexity:
- Best: O(n log n)
- Average: O(n log n)
- Worst: O(n log n)
- Space Complexity: O(n)
5. Quick Sort โก
- Time Complexity:
- Best: O(n log n)
- Average: O(n log n)
- Worst: O(nยฒ)
- Space Complexity: O(log n)
6. Heap Sort ๐ผ
- Time Complexity:
- Best: O(n log n)
- Average: O(n log n)
- Worst: O(n log n)
- Space Complexity: O(1)
Searching Algorithms ๐
1. Linear Search ๐ถ
- Time Complexity:
- Best: O(1)
- Average: O(n)
- Worst: O(n)
- Space Complexity: O(1)
2. Binary Search ๐
- Time Complexity:
- Best: O(1)
- Average: O(log n)
- Worst: O(log n)
- Space Complexity: O(1)
Graph Algorithms ๐
1. Depth-First Search (DFS) ๐ฒ
- Time Complexity: O(V + E)
- Space Complexity: O(V)
2. Breadth-First Search (BFS) ๐๏ธ
- Time Complexity: O(V + E)
- Space Complexity: O(V)
3. Dijkstraโs Algorithm ๐ค๏ธ
- Time Complexity: O(E + V log V) (using a priority queue)
- Space Complexity: O(V)
4. Floyd-Warshall Algorithm ๐ก๏ธ
- Time Complexity: O(Vยณ)
- Space Complexity: O(Vยฒ)
5. Kruskalโs Algorithm ๐
- Time Complexity: O(E log E)
- Space Complexity: O(V)
6. Primโs Algorithm โ๏ธ
- Time Complexity: O(E + V log V) (using a priority queue)
- Space Complexity: O(V)
Dynamic Programming ๐
1. Fibonacci Sequence ๐
- Time Complexity:
- Recursive: O(2^n)
- Memoized: O(n)
- Iterative: O(n)
- Space Complexity:
- Recursive: O(n) (stack space)
- Memoized: O(n)
- Iterative: O(1)
2. 0/1 Knapsack ๐
- Time Complexity: O(nW)
- Space Complexity: O(nW)
3. Longest Common Subsequence (LCS) ๐งต
- Time Complexity: O(nm)
- Space Complexity: O(nm)
4. Coin Change ๐ฐ
- Time Complexity: O(nW)
- Space Complexity: O(W)
String Algorithms ๐งถ
1. Knuth-Morris-Pratt (KMP) Algorithm ๐
- Time Complexity: O(n + m)
- Space Complexity: O(m)
2. Rabin-Karp Algorithm ๐
- Time Complexity:
- Best: O(n + m)
- Average: O(n + m)
- Worst: O(nm)
- Space Complexity: O(1)
3. Trie (Prefix Tree) ๐ณ
- Time Complexity:
- Insertion: O(m)
- Search: O(m)
- Deletion: O(m)
- Space Complexity: O(Alphabet Size m n)
Miscellaneous Algorithms ๐ฒ
1. Quick Select ๐ฏ
- Time Complexity:
- Best: O(n)
- Average: O(n)
- Worst: O(nยฒ)
- Space Complexity: O(1)
2. Union-Find / Disjoint Set ๐งฉ
- Time Complexity:
- Find: O(ฮฑ(n))
- Union: O(ฮฑ(n))
- Space Complexity: O(n)
3. Bit Manipulation ๐งฎ
- Common Operations: O(1)
- Space Complexity: O(1)
Good luck with your preparation! ๐
Download Top 169 Coding Questions
https://topmate.io/anandwana001/1022452
Don't forget to Subscribe to this newsletter for more articles,
And our YouTube channel where we meet face-to-face :)
Looking for Mentorship?
Copyright ยฉ2024 Preplaced.in
Preplaced Education Private Limited
Ibblur Village, Bangalore - 560103
GSTIN- 29AAKCP9555E1ZV