Definition
Algorithm
Complexity
Definition
Link to originalAlgorithm Complexity
We base our considerations on the asymptotic worst-case complexity of an algorithm, i.e., by means of a function , such that for every problem instance of size , the answer can b computed in operations (runtime), or respectively by means of bits in memory (memory requirement).
Variants
Greedy
Definition
Link to originalGreedy Algorithm
An algorithm is called greedy if it constructs a solution incrementally using a local criterion, without foresight, to select the next solution component to be added.