Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
Greedy algorithm only applies to the optimization problem.
This is how the greedy algorithm works:
But the greedy algorithm does not work all the time for example:
If we take the concept of the greedy algorithm and figure out how to utilize in a way that cover the weakness of this algorithm, it turns into Dijkstra's algorithm
Here how we approach Dijkstra algorithm:
if we are looking for the shortest path, then there are two optimal algorithms that we automatically know are proabably going to be the correct way to appraoch the problem
################## Point to be noted #############################
When you see a directed weighted graph and you are looking for the shortest path to all the nodes from any specific node,
you want to use these two algorithms that we are going to learn.
Dijkstra Algorithm:
-------------------
Dijkstra algo can only be applied to graphs that are directed and weighted.
It aims to help you figure out, what is the shortest distance between some node of your choice to every other node
Greedy method is an algorithmic paradigm, meaning it's a way that we tackle problems that is very simple. it only applies when we are working with optimization problem
Greedy Algorithm :
We are hiking on a trail, we come to a form , left which take 4 hrs and right which take 1 hour.
Greedy algorithms are commonly used for optimization problems like:
Activity Scheduling:
Fractional Knapsack:
Coin Change:
Example keywords: