An algorithmic approach for solving a problem by selecting the best available option at that moment of time, without bothering about the future results.
The local best choices made would lead towards globally best results.
It works in a top-down approach.
Iteratively makes one greedy choice at a time, reducing each problem into a smaller one.
That’s why the algorithm never reconsiders an earlier decision even if the choice is wrong.
Usually have to choose at each step a local maximum/minimum, so usually, we sort the input or use a fit data structure like a min/max heap.