Computing (FOLDOC) dictionary
exponential-time algorithm
Jump to user comments
guaranteed to terminate within a number of steps which is a
For example, if you have to check every number of n digits to
find a solution, the
complexity is O(10^n), and if you add
an extra digit, you must check ten times as many numbers.
Even if such an algorithm is practical for some given value of
n, it is likely to become impractical for larger values. This
more slowly.
(1995-04-27)