Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/serverx-org/dsa-mastery
This repository covers the roadmap for mastering Data Structures and Algorithms in JavaScript, Python, C/C++, and Java.
https://github.com/serverx-org/dsa-mastery
algorithms algorithms-and-data-structures compitative-coding compititive-programming cpp dsa dsa-mastery hacktoberfest hacktoberfest-2024 java js learn-dsa py server-x-101 serverx
Last synced: 15 days ago
JSON representation
This repository covers the roadmap for mastering Data Structures and Algorithms in JavaScript, Python, C/C++, and Java.
- Host: GitHub
- URL: https://github.com/serverx-org/dsa-mastery
- Owner: serverx-org
- Created: 2023-12-22T15:10:25.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T15:25:06.000Z (16 days ago)
- Last Synced: 2024-10-21T11:00:06.710Z (16 days ago)
- Topics: algorithms, algorithms-and-data-structures, compitative-coding, compititive-programming, cpp, dsa, dsa-mastery, hacktoberfest, hacktoberfest-2024, java, js, learn-dsa, py, server-x-101, serverx
- Language: C++
- Homepage: https://serverx.org.in/articles/dsa-mastery/
- Size: 9.16 MB
- Stars: 10
- Watchers: 1
- Forks: 15
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# DSA-MASTERY
> [!TIP]
> **DSA Mastery in 9 Weeks: Read, Solve, Code!**This repository covers the roadmap for mastering Data Structures and Algorithms in JavaScript, Python, C/C++, and Java.
| | **TABLE OF CONTENTS** |
| :---: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| • | [**DSA Roadmap**](#data-structures-and-algorithms-roadmap) |
| • | [**JavaScript DSA**](./JavaScript/README.md) |
| • | [**Python DSA**](#python---data-structures-and-algorithms) |
| • | [**C/C++ DSA**](#cc---data-structures-and-algorithms) |
| • | [**Java DSA**](#java---data-structures-and-algorithms) |
| • | DSA Practice Sheets◌ Strivers DSA Cheat Sheet
| |
◌ Love Babar DSA Cheat Sheet
◌ Apna College DSA Cheat Sheet
◌ NeetCode 150 DSA Cheat Sheet
◌ DSA Sheet by Arsh (45–60 Days Plan)
◌ AlgoPrep’s 151 Problems Sheet## Data Structures and Algorithms Roadmap
## 5 steps to Mastering DSA
Mastering DSA as a beginner is simplified into 5 steps:
1. Choose a programming language.
2. Understand time and space complexities.
3. Learn basic data structures and algorithms.
4. Practice a lot.
5. Join competitions to get really good.## INDEX
| Steps | Table of Contents |
| :---: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 1. | [**Master at least one Programming Language**](#1-master-at-least-one-programming-language) |
| 2. | [**Understand Complexities**](#2-understand-complexities) |
| 3. | Learn essential Data Structures and Algorithms, including:◌ **3.1 - Mathematics Basic** ◌ **3.2 - Array** ◌ **3.3 - String** ◌ **3.4 - Stack** ◌ **3.5 - Queue** ◌ **3.6 - Searching Algorithm** ◌ **3.7 - Sorting Algorithm** ◌ **3.8 - Divide and Conquer Algorithm** ◌ **3.9 - Linked List** ◌ **3.10 - Tree Data Structure** ◌ **3.11 - Graph Data Structure** ◌ **3.12 - Recursion** ◌ **3.13 - Backtracking Algorithm** ◌ **3.14 - Dynamic Programming** ◌ **3.15 - Greedy Methodology** ◌ **3.16 - Mathematics Advanced**
|
| 4. | [**Practice consistently and extensively**](#4-practice-consistently-and-extensively) |
| 5. | [**Compete to advance and become proficient**](#5-compete-to-advance-and-become-proficient) |## 1. Master at least one Programming Language
Embark on your data structures and algorithms journey by mastering a programming language. Just as we learn the alphabet and grammar before writing essays, understanding the basics of a language is essential for programming.
Choose a language, whether it's [**Java**](https://www.geeksforgeeks.org/java/), [**C**](https://www.geeksforgeeks.org/c-programming-language/), [**C++**](https://www.geeksforgeeks.org/c-plus-plus/), [**Python**](https://www.geeksforgeeks.org/python-programming-language/), or any other of your preference. Before diving into coding, grasp the foundational elements of the language, including basic syntax, data types, variables, operators, conditional statements, loops, functions, etc. Optionally, explore Object-Oriented Programming (OOP) concepts to strengthen your coding foundation.
## 2. Understand Complexities
Now, let's delve into an interesting and crucial topic. The main goal of using DSA is to solve problems effectively and efficiently. How do you assess if your program is efficient? This is where complexities come in, and there are two types:
1. **Time Complexity:** It measures the time needed to execute the code.
2. **Space Complexity:** It indicates the space required for the code to function successfully.
3. **Design And Analysis Of Algorithms**
- Designing efficient algorithms and analyzing their performance.
- Lecture Notes: [**Design And Analysis Of Algorithms**](https://ocw.mit.edu/courses/6-046j-design-and-analysis-of-algorithms-spring-2012/pages/lecture-notes/)In DSA, you'll often encounter the term Auxiliary Space, referring to extra space used in the program beyond the input data structure.
It overlooks system-dependent constants and focuses solely on the number of modular operations performed in the entire program. Three commonly used asymptotic notations describe the time complexity of algorithms:
1. **Big-O Notation (Ο):** Describes the worst-case scenario.
2. **Omega Notation (Ω):** Specifies the best-case scenario.
3. **Theta Notation (θ):** Represents the average complexity of an algorithm.### Asymptotic analysis (Big-O notation)
Basics: Asymptotic analysis
◌ Big-O notation in 5 minutes
YouTube◌ Particularly for Big-O notation
runestone.academyAdvanced: Asymptotic analysis
◌ A beginner's guide to Big O notation
rob-bell.net◌ Particularly for Big-O notation
YouTube◌ Lecture 2: Asymptotic Notation CSCI 700
web.archive.orgPractice: Time and Space Complexity
◌ MCQs: Time and Space Complexity
CodeChef◌ Particularly for Big-O notation
YouTube◌ Practice Problems
IITK Lecture Practice[**Back To Top ⬆️**](#index)
## 3. Learn essential Data Structures and Algorithms
◌ 3.1 - Mathematics Basic
◌ 3.2 - Array
◌ 3.3 - String
◌ 3.4 - Stack
◌ 3.5 - Queue
◌ 3.6 - Searching Algorithm
◌ 3.7 - Sorting Algorithm
◌ 3.8 - Divide and Conquer Algorithm
◌ 3.9 - Linked List
◌ 3.10 - Tree Data Structure
◌ 3.11 - Graph Data Structure
◌ 3.12 - Recursion
◌ 3.13 - Backtracking Algorithm
◌ 3.14 - Dynamic Programming
◌ 3.15 - Greedy Methodology
◌ 3.16 - Mathematics Advanced
## 3.1 Mathematics Basic
### Basic Mathematics in DSA
- Fundamental for evaluating algorithm effectiveness.
- Essential for problems with mathematical characteristics.
- Crucial for mastering Data Structures and Algorithms.Resources: Mathematics
GFG: GCD and HCF (Euclidean Algorithm)
GFG: Divisors of a number
GFG: Prime numbers using Sieve of Eratosthenes
GFG: Square root
GFG: Modular Arithmetic
GFG: Fast Power-Exponentiation by Squaring
GFG: Factorial of a number
GFG: Fibonacci Number
GFG: Catalan Numbers
GFG: Euler Totient Function
GFG: Prime numbers & Primality Tests
GFG: Prime Factorization & Divisors
GFG: Chinese Remainder Theorem
GFG: Practice Problems based on Maths for DSA
## 3.2 Array
The array is a fundamental and crucial data structure, presenting a linear arrangement of elements. It serves as a collection of homogeneous data types, with elements allocated contiguous memory. Thanks to this contiguous allocation, accessing any array element occurs in constant time. Each array element is identified by a corresponding index number.
Additional Array Topics to Explore
- **Rotation of Array:** Shifting elements in a circular manner, such as right circular shift where the last element becomes the first.
- **Rearranging an array:** Changing the initial order of elements based on specific conditions or operations.
- **Range queries in the array:** Performing operations on a range of elements, often referred to as range queries.
- **Multidimensional array:** Arrays with more than one dimension, commonly encountered in the form of 2-dimensional arrays, known as matrices.
- **Kadane’s algorithm**
- **Dutch national flag algorithm**Resources: Arrays
◌ Data Structure Tutorial: Array
CodeChef
◌ Arrays: Lecture Notes
cs.cmu.edu
◌ Arrays Data Structure
geeksforgeeks.org
Practice Problems: Arrays
◌ Little Elephant and Candies
CodeChef: LECANDY
Editorial
◌ Chef and Notebooks
CodeChefL CNOTE
Editorial
◌ The Minimum Number Of Moves
CodeChef: SALARY
Editorial
◌ Mutated Minions
CodeChef: CHN15A
Editorial
◌ Chef and Rainbow Array
CodeChef: RAINBOWA
Editorial
◌ Forgotten Language
CodeChef: FRGTNLNG
Editorial
◌ Leetcode: Interview Practice
Leetcode: Practice Arrays
Interview Level
## 3.3 String
A string, essentially a type of array, can be seen as an array of characters. However, it possesses distinct features, such as the last character being a null character to signify the string's end. Unique operations, like concatenation merging two strings into one, further set strings apart.
Additional String Concepts to Explore
- **Subsequence and Substring:** A subsequence is derived from a string by deleting one or more elements, while a substring is a contiguous segment of the string.
- **Reverse and Rotation in a String:** Reversing involves interchanging character positions, while rotation shifts elements circularly.
- **Binary String:** Comprising only two types of characters.
- **Palindrome:** A string with elements equidistant from its center being the same.
- **Lexicographic Pattern:** A pattern based on ASCII values or in dictionary order.
- **Pattern Searching:** Advanced topic involving searching for a given pattern within the string.Resources: Strings
◌ C++ Strings
tutorialspoint.com
◌ Java strings
guru99.com
◌ Python strings
docs.python.org
◌ Python strings
tutorialspoint.com
◌ Many string questions
geeksforgeeks.org
Practice Problems: Strings
◌ Count Substrings
CodeChef: CSUB
Editorial
◌ Lapindromes
CodeChefL LAPIN
Editorial
◌ Leetcode: Interview Practice
Leetcode: Practice Strings
Interview Level
## 3.4 Stack
Transitioning to more complex data structures, let's explore the Stack and Queue.
A Stack is a linear data structure that adheres to a specific order for its operations. This order can be LIFO (Last In First Out) or FILO (First In Last Out).
The complexity of the Stack as a data structure arises from its implementation, utilizing other data structures like Arrays, Linked lists, etc., chosen based on the characteristics and features specific to the Stack data structure.
Resources: Stacks
◌ Stack Data Structure
geeksforgeeks.org
◌ Stack Data Structure
tutorialspoint.com
◌ Stacks: Lecture Notes
cs.cmu.edu
Practice Problems: Stacks
◌ Just Next
spoj.com: JNEXT
◌ Transform the Expression
spoj.com: ONP
◌ Largest Rectangle in a Histogram
spoj.com: HISTOGRA
◌ Compilers and parsers
CodeChefL COMPILER
◌ Leetcode: Interview Practice
Leetcode: Practice Stacks
[**Back To Top ⬆️**](#index)
## 3.5 Queue
Similar to a Stack but with distinct characteristics, the Queue is another linear data structure.
A Queue operates on the principle of First In First Out (FIFO) in its individual operations.
Different types of queues include:
- **Circular Queue:** The last element is connected to the first element, forming a circular structure.
- **Double-ended Queue (Deque):** Allows operations from both ends of the queue.
- **Priority Queue:** Elements are arranged based on priority, with lower-priority elements dequeued after higher-priority ones.Resources: Queues
◌ Array Implementation of Queue
geeksforgeeks.org
◌ Stacks and Queues
viterbi-web.usc.edu
◌ Stacks and Queues
cs.cmu.edu
Practice Problems: Queues
◌ Mass of Molecule
spoj.com: MMASS
◌ Transform the Expression
spoj.com: ONP
◌ Maximum Xor Secondary
codeforces.com: 281/D
◌ Longest Regular Bracket Sequence
codeforces.com: contest/5/problem/C
◌ Alternating Current
codeforces.com: contest/343/problem/B
◌ Seinfeld
spoj.com: ANARC09A
◌ Leetcode: Interview Practice
Leetcode: Practice Queues
[**Back To Top ⬆️**](#index)
## 3.6 Searching Algorithm
Having explored linear data structures, it's time to delve into fundamental and widely used algorithms, starting with searching algorithms.
Searching algorithms aim to locate a specific element in an array, string, linked list, or other data structures. Key searching algorithms include:- **Linear Search:** Iteratively checks for the element from one end to the other.
- **Binary Search:** Divides the data structure into two equal parts to locate the element.
- **Ternary Search:** Divides the array into three parts, determining the segment to search based on partitioning values.Other notable searching algorithms include:
- Jump Search
- Interpolation Search
- Exponential SearchResources: Searching
◌ Naive string searching
geeksforgeeks.org
◌ Detailed Theoretical analysis
cmu.edu
◌ Binary search
khanacademy.org
Practice Problems: Searching
◌ Searching Algorithms
geeksforgeeks.org
◌ GFG: Binary Search
geeksforgeeks.org
◌ Leetcode: Interview Practice
Leetcode: Practice Binary-Search
[**Back To Top ⬆️**](#index)
## 3.7 Sorting Algorithm
Another crucial algorithm is the sorting algorithm, frequently employed when arranging data based on specific conditions becomes necessary. Sorting algorithms are utilized to rearrange a set of homogeneous data, such as sorting an array in increasing or decreasing order.
These algorithms rearrange the elements of a given array or list according to a comparison operator. The comparison operator determines the new order of elements in the respective data structure.
Widely Used Sorting Algorithms
- **Bubble Sort**
- **Selection Sort**
- **Insertion Sort**
- **Quick Sort**
- **Merge Sort**Numerous other sorting algorithms exist, each beneficial in different scenarios.
Resources: Sorting
◌ Sorting
khanacademy.org
◌ BUBBLE SORT
visualgo.net
◌ Merge sort algorithm
youtube.com
◌ Quick sort algorithm
youtube.com
◌ Counting Sort
geeksforgeeks.org
Practice Problems: Sorting
◌ Merge Sort
CodeChef: MRGSRT
◌ Turbo Sort
CodeChef: TSORT
◌ Merge Sort
CodeChef: MRGSRT
◌ Leetcode: Interview Practice
Leetcode: Practice Sorting
[**Back To Top ⬆️**](#index)
## 3.8 Divide and Conquer Algorithm
An intriguing and significant algorithm to learn in your programming journey is the Divide and Conquer algorithm. True to its name, it breaks down a problem into parts, solves each subproblem, and then merges the solutions to address the original problem.
The algorithmic paradigm of Divide and Conquer involves three key steps:
1. **Divide:** Break the given problem into subproblems of the same type.
2. **Conquer:** Recursively solve these subproblems.
3. **Combine:** Appropriately combine the answers.This technique is prominently featured in two sorting algorithms—Merge Sort and Quick Sort.
Resources: Divide and Conquer
◌ Divide-and-Conquer and Recurrences
cs.cmu.edu
◌ Divide and Conquer
geeksforgeeks.org
Practice Problems: Divide and Conquer
◌ Merge Sort
codechef.com: MRGSRT
◌ Tasty Dishes
codechef.com: TASTYD
◌ Restore the Permutation
codechef.com: RESTPERM
◌ A Magical Length
codechef.com: ACM14KP1
◌ Largest Rectangle in a Histogram
spoj.com: HISTOGRA
◌ Compilers and parsers
CodeChefL COMPILER
◌ Leetcode: Interview Practice
Leetcode: Practice Divide and Conquer
[**Back To Top ⬆️**](#index)
## 3.9 Linked List
Similar to the aforementioned data structures, a linked list is a linear data structure. However, unlike an array, a linked list doesn't have contiguous memory allocation. Instead, each node in the linked list is assigned to a random memory space, and the previous node maintains a pointer to this node. Direct memory access to any node is not possible, and the linked list is dynamic, allowing for size adjustments at any time.
Linked List Variations to Explore
- **Singly Linked List:** Each node points only to its next node.
- **Circular Linked List:** The last node points back to the head of the linked list.
- **Doubly Linked List:** Each node holds two pointers—one pointing to the next node and the other to the previous node.Resources: Linked List
◌ Linked List Data Structure
geeksforgeeks.org
Practice Problems: Linked List
◌ Leetcode: Interview Practice
Leetcode: Practice Linked List
[**Back To Top ⬆️**](#index)
## 3.10 Tree Data Structure
Having covered the basics of linear data structures, let's delve into non-linear structures, starting with the Tree.
The Tree data structure resembles an inverted tree from nature, featuring a root and leaves. The root is the initial node, and the leaves are at the bottom-most level. Notably, there's only one path between any two nodes in a tree.
Based on the maximum number of children a node can have:
- **Binary Tree:** Each node can have a maximum of 2 children.
- **Ternary Tree:** Each node can have a maximum of 3 children.
- **N-ary Tree:** A node can have at most N children.Additional classifications based on node configuration include:
- **Complete Binary Tree:** All levels are filled, except possibly for the last level, which is filled from the left as much as possible.
- **Perfect Binary Tree:** All levels are filled.
- **Binary Search Tree:** A special binary tree where smaller nodes are on the left, and higher value nodes are on the right.
- **Ternary Search Tree:** Similar to a binary search tree, but with nodes having at most 3 children.Resources: Trees
◌ Tree Data Structure
geeksforgeeks.org
◌ Heaps (priority queue)
viterbi-web.usc.edu
◌ Heaps
visualgo.net
◌ Priority Queues: Lecture Notes
cs.cmu.edu
◌ UNION-FIND DISJOINT SETS (UFDS)
visualgo.net
◌ DISJOINT-SET DATA STRUCTURES
topcoder.com
◌ Disjoint set (Union-Find): Lecture Notes
harvard.edu
◌ Segment Trees: MIN SEGMENT TREE
visualgo.net
◌ RANGE MINIMUM QUERY AND LOWEST COMMON ANCESTOR
topcoder.com
◌ Segment Trees
iarcs.org.in
◌ BINARY INDEXED TREES: TopCoder
topcoder.com
◌ Binary Index Tree (Fenwick tree)
visualgo.net
◌ Binary Index Tree: ICO
iarcs.org.in
◌ Trees (traversals)
berkeley.edu
◌ Dynamic programming on trees
iarcs.org.in
Practice Problems: Trees
Leetcode: Practice Trees
Leetcode: Practice Heap (Priority Queue)
Leetcode: Practice Segment Tree
Leetcode: Practice Union Find
Leetcode: Practice Binary Indexed Tree
Leetcode: Practice Depth-First Search
Leetcode: Practice Breadth-First Search
Leetcode: Practice Binary Search Tree
Leetcode: Practice Trie
[**Back To Top ⬆️**](#index)
## 3.11 Graph Data Structure
Moving on to another crucial non-linear structure, let's explore the Graph. Unlike the Tree, a Graph lacks a specific root or leaf node and allows traversal in any order.
A Graph is a non-linear structure composed of a finite set of vertices (or nodes) and a set of edges connecting pairs of nodes. It proves invaluable in solving various real-life problems. Graphs can take different forms based on edge orientation and node characteristics.
Key concepts to explore:
- **Types of Graphs:** Varying types based on connectivity or weights of nodes.
- **Introduction to BFS and DFS:** Algorithms for traversing through a graph.
- **Cycles in a Graph:** Series of connections leading to a loop.
- **Topological Sorting in the Graph**
- **Minimum Spanning Tree in Graph**Resources: Graphs
◌ Graph Data Structure And Algorithms
geeksforgeeks.org
◌ Depth First Search or DFS for a Graph
geeksforgeeks.org
◌ GRAPH TRAVERSAL (DFS/BFS)
visualgo.net
◌ Dijkstra’s shortest path algorithm
geeksforgeeks.org
◌ SINGLE-SOURCE SHORTEST PATHS
visualgo.net
◌ Bellman Ford Algorithm
geeksforgeeks.org
◌ One Source Shortest Path
compprog.wordpress.com
◌ Minimum spanning tree
cs.princeton.edu
◌ Articulation points
iarcs.org.in
◌ Strongly connected components
iarcs.org.in
◌ Topological Sorting
geeksforgeeks.org
◌ Euler Paths and Euler Circuits
jlmartin.ku.edu
◌ Fast Modulo Multiplication
codechef.com
◌ Algos for Calculating nCr % M
codechef.com
Practice Problems: Graphs
◌ Two Closest
codechef.com: PAIRCLST
◌ Special Shortest Walk
codechef.com: SPSHORT
◌ Robot Control
codeforces.com: 346/D
◌ Arbitrage
spoj.com: ARBITRAG
◌ Cost
spoj.com: HIGHWAYS
◌ Police Query
spoj.com: POLQUERY
◌ Visiting Friends
codechef.com: MCO16405
◌ Chef and Roads
codechef.com: CL16BF
◌ Codechef Password Recovery
codechef.com: CHEFPASS
◌ Tanya and Password
codeforces.com: contest/508/problem/D
◌ One-Way Reform
codeforces.com: contest/723/problem/E
◌ Problem Statement for NetworkSecurity
topcoder.com
◌ Leetcode: Interview Practice
Leetcode: Practice Graphs
[**Back To Top ⬆️**](#index)
## 3.12 Recursion
Recursion stands out as a vital algorithm leveraging the concept of code reusability and repeated code usage. Its significance extends to being the foundation for many other algorithms, including:
- Tree Traversals
- Graph Traversals
- Divide and Conquer Algorithms
- Backtracking AlgorithmsTo explore Recursion thoroughly, refer to the following articles/links:
Resources: Recursion
◌ AN INTRODUCTION TO RECURSION PART ONE
topcoder.com
◌ AN INTRODUCTION TO RECURSION PART TWO
topcoder.com
◌ Introduction to Recursion
geeksforgeeks.org
◌ Backtracking, Memoization & Dynamic Programming!
loveforprogramming.quora.com
◌ Recursion Interview Questions & Tips
interviewing.io
Practice Problems: Recursion
◌ Connecting Soldiers
codechef.com: NOKIA
◌ Fit Squares in Triangle
codechef.com: TRISQ
◌ Leetcode: Interview Practice
Leetcode: Practice Recursion
## 3.13 Backtracking Algorithm
Derived from Recursion, the Backtracking algorithm allows for retracing if a recursive solution fails, exploring alternative solutions. It systematically tries out all possible solutions to find the correct one.
Backtracking is an algorithmic technique that incrementally builds a solution, removing failed solutions that don't meet problem constraints.
Key problems to tackle in Backtracking algorithms:
- **Knight’s Tour Problem**
- **Rat in a Maze**
- **N-Queen Problem**
- **Subset Sum Problem**
- **M-Coloring Problem**
- **Hamiltonian Cycle**
- **Sudoku**Resources: Backtracking
◌ Backtracking Algorithms
geeksforgeeks.org
◌ Recursion and Backtracking
codeforces.com
◌ Backtracking:the essential part of dynamic programming
codeforces.com
◌ Backtracking, Memoization & Dynamic Programming!
loveforprogramming.quora.com
◌ Backtracking Archives
geeksforgeeks.org
Practice Problems: Backtracking
◌ Leetcode: Interview Practice
Leetcode: Practice Backtracking
[**Back To Top ⬆️**](#index)
## 3.14 Dynamic Programming
Dynamic Programming stands as a crucial algorithm, serving as an optimization over plain recursion. It becomes particularly valuable when a recursive solution involves repeated calls for the same inputs, allowing for optimization.
> Those who cannot remember the past are condemned to repeat it.
>- Dynamic ProgrammingKey concepts to explore in Dynamic Programming:
- **Tabulation vs Memoization**
- **Optimal Substructure Property**
- **Overlapping Subproblems Property**
- **Bitmasking and Dynamic Programming**
- **Bitmasking and Dynamic Programming**
- **Digit DP**### Basic DP
Resources: Basic Dynamic Programming
◌ Demystifying Dynamic Programming
freecodecamp.org
◌ DP Tutorial and Problem List
codeforces.com
◌ DYNAMIC PROGRAMMING: FROM NOVICE TO ADVANCED
topcoder.com
◌ Dynamic Programming
geeksforgeeks.org
◌ Backtracking, Memoization & Dynamic Programming!
loveforprogramming.quora.com
Practice Problems: Basic Dynamic Programming
◌ Alternating subarray prefix
codechef.com: ALTARAY
◌ Subtraction Game 2
codechef.com: AMSGAME2
◌ Striver DP Series
takeuforward.org
◌ Leetcode: Interview Practice
Leetcode: Practice Dynamic Programming
### Advanced DP
Resources: Adv Dynamic Programming
◌ Dynamic Programming over Subsets and Paths
codeforces.org
Practice Problems: Adv Dynamic Programming
◌ Histogram
spoj.com: HIST2
◌ Lazy Cows
spoj.com: LAZYCOWS
◌ Traveling by Stagecoach
spoj.com: TRSTAGE
◌ Rent your airplane and make money
spoj.com: RENT
◌ Increasing Subsequences
spoj.com: INCSEQ
◌ Distinct Increasing Subsequences
spoj.com: INCDSEQ
◌ Dynamic Programming Type
codechef.com: problem list
◌ Striver DP Series
takeuforward.org
◌ Leetcode: Interview Practice
Leetcode: Practice Dynamic Programming
[**Back To Top ⬆️**](#index)
## 3.15 Greedy Methodology
As the name implies, the Greedy methodology constructs the solution incrementally, selecting the next piece that provides the most immediate benefit — the locally optimal choice leading to global solutions.
Well-suited for problems where choosing locally optimal options also results in global optimality. For instance, the Fractional Knapsack Problem employs a local optimal strategy of choosing items with the maximum value-to-weight ratio, leading to a globally optimal solution as fractions are allowed.
To delve into the Greedy algorithm, explore these sub-topics:
- **Standard Greedy Algorithms**
- **Greedy Algorithms in Graphs**
- **Greedy Algorithms in Operating Systems**
- **Greedy Algorithms in Arrays**
- **Approximate Greedy Algorithms for NP-complete Problems**Resources: Greedy
◌ Greedy Algorithms
geeksforgeeks.org
◌ Greedy Algorithms
iarcs.org.in
◌ GREEDY IS GOOD
topcoder.com
◌ GREEDY IS GOOD
jeffe.cs.illinois.edu
Practice Problems: Greedy
◌ Biased Standings
spoj.com: BAISED
◌ Load Balancing
spoj.com: BALIFE
◌ Many Chefs
codechef.com: MANYCHEF
◌ Leetcode: Interview Practice
Leetcode: Practice Greedy
[**Back To Top ⬆️**](#index)
## 3.16 Mathematics Advanced
### Advance Mathematics in DSA
- Fundamental for evaluating algorithm effectiveness.
- Essential for problems with mathematical characteristics.
- Crucial for mastering Data Structures and Algorithms.> Mathematical algorithm can be defined as an algorithm or procedure which is utilized to solve a mathematical problem, or mathematical problem which can be solved using DSA.
Resources: Mathematics
GFG: Mathematical Algorithms for DSA
Codeforces: Mathematical Blogs on DSA
Practice Problems: Mathematics
Leetcode: Practice Math
[**Back To Top ⬆️**](#index)
## 4. Practice Consistently and Extensively
Having covered the basics of major data structures and algorithms, it's time to put your knowledge into practice.
>"Practice makes a man perfect."
For learning DSA, consistent and extensive practice is key. Whether considered a separate step or an integral part of the learning process, dedicating time to solving problems and implementing algorithms is essential for mastery.
## 5. Compete to Advance and Become Proficient
Explore and enhance your coding skills on various practicing platforms. Compete, solve challenges, and advance your proficiency on platforms like:
1. [**LeetCode**](https://leetcode.com/)
2. [**Codeforces**](https://codeforces.com/)
3. [**HackerRank**](https://www.hackerrank.com/)
4. [**CodeChef**](https://www.codechef.com/)
5. [**TopCoder**](https://www.topcoder.com/)
6. [**AtCoder**](https://atcoder.jp/)
7. [**GeeksforGeeks**](https://www.geeksforgeeks.org/)
8. [**InterviewBit**](https://www.interviewbit.com/)
9. [**Exercism**](https://exercism.io/)
10. [**Project Euler**](https://projecteuler.net/)Competing on these platforms will help you apply your knowledge, face diverse challenges, and continuously improve your problem-solving skills.
## Tips to Boost Your Learning
Throughout the roadmap to learn DSA, consider the following tips to enhance your learning experience:
1. **Master the Fundamentals:** Thoroughly understand the fundamentals of your chosen programming language, including basic syntax, data types, operators, variables, functions, conditional statements, loops, and Object-Oriented Programming (OOP).
2. **Implement Concepts Practically:** Implement each small concept actively. Practice coding to reinforce your understanding of basic programming constructs.
3. **Grasp Complexity Analysis:** Learn how to analyze the complexity of algorithms. Solve multiple questions to practice calculating complexities. Utilize quizzes on Algorithm Analysis for additional practice.
4. **Focus on Logic Building:** Strengthen your logical thinking by solving problems from scratch without referring to solutions or editorials. The more problems you solve independently, the more robust your logic-building skills become.
5. **Overcome Challenges:** Accept that challenges and roadblocks are part of the learning journey. If you're stuck on a problem or topic, read hints and approaches, and try to solve it independently. If needed, refer to the logic and code it yourself. If facing repeated challenges, consider revisiting the related concepts.Remember, learning DSA is a continuous process, and persistence and problem-solving skills play crucial roles in your success.
## DSA Practice Sheets
### 1. **Striver’s SDE Sheet — Top Coding Interview Problems**
- [**Striver: Website Link**](https://takeuforward.org/interviews/strivers-sde-sheet-top-coding-interview-problems/)
- Creator: Raj Vikramaditya (Striver)
- A compilation of essential coding interview questions in Data Structures & Algorithms. Commonly asked in interviews at prominent companies like Google, Amazon, and Facebook.### 2. **DSA Sheet by Love Babbar**
- [**Love Babbar: Website Link**](https://www.geeksforgeeks.org/dsa-sheet-by-love-babbar/)
- Creator: Love Babbar
- A comprehensive list of 450 coding questions by a former Amazon Software Engineer. These questions help in understanding Data Structures & Algorithms and are frequently asked in interviews at companies like Amazon, Microsoft, and Google.### 3. **Apna College DSA Sheet**
- [**Apna College: Google Sheet Link**](https://docs.google.com/spreadsheets/d/1hXserPuxVoWMG9Hs7y8wVdRCJTcj3xMBAEYUOXQ5Xag)
- Creators: Shradha Didi and Aman Bhaiya
- A valuable resource with around 400 problems categorized by topic, along with information about companies that have posed these problems.### 4. **NeetCode 150**
- [**NeetCode: Website Link**](https://neetcode.io/practice)
- Curated by a Google engineer
- A collection of 150 LeetCode.com questions covering important topics for interviews at FAANG and other big tech companies.### 5. **DSA Sheet by Arsh 60 Days Plan**
- [**Arsh: Google Sheet Link**](https://docs.google.com/spreadsheets/d/1MGVBJ8HkRbCnU6EQASjJKCqQE8BWng4qgL0n3vCVOxE)
- Creator: Arsh Goyal
- A DSA plan with coding problems designed to prepare for interviews in 45–60 days. Arsh has a background in Samsung, CodeChef, and ISRO.### 6. **AlgoPrep’s 151 Problems Sheet**
- [**AlgoPrep: Google Sheet Link**](https://docs.google.com/spreadsheets/d/1kyHfGGaLTzWspcqMUUS5Httmip7t8LJB0P-uPrRLGos)
- Compiled by Nishant Bhaiya from AlgoPrep
- A broad range of coding problems and solutions related to data structures and algorithms, aimed at assisting software development engineers in interview preparation for top tech firms.[**Back To Top ⬆️**](#index)
---
## Upcoming Additions
Stay tuned for additional resources and guides tailored for specific programming languages:
### JavaScript - Data Structures and Algorithms
**DSA in JavaScript**: [*Learn DSA in JavaScript*](./JavaScript/)
### C/C++ - Data Structures and Algorithms
**DSA in C++**: [*Learn DSA in C++*](./C++/)
### Python - Data Structures and Algorithms
### Java - Data Structures and Algorithms