Randomized Algorithm

From GM-RKB
Revision as of 14:15, 8 January 2013 by Gmelli (talk | contribs) (Text replace - " (2005)" to " (2005)")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A Randomized Algorithm is an Algorithm that uses a Random Function in its logic.



References

2009

  • (Wikipedia, 2009) ⇒ http://en.wikipedia.org/wiki/Randomized_algorithm
    • A randomized algorithm or probabilistic algorithm is an algorithm which employs a degree of randomness as part of its logic. The algorithm typically uses uniformly random bits as an auxiliary input to guide its behavior, in the hope of achieving good performance in the "average case" over all possible choices of random bits. Formally, the algorithm's performance will be a random variable determined by the random bits; thus either the running time, or the output (or both) are random variables.
    • In both cases, random performance and random output, the term "algorithm" for a procedure is somewhat questionable, as it is no longer formally effective. However, in some cases, probabilistic algorithms are the only practical means of solving a problem.
    • In common practice, randomized algorithms are approximated using a pseudorandom number generator in place of a true source of random bits; such an implementation may deviate from the expected theoretical behavior.

2005

1995