Jump to content

Linearithmic function

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Danakil (talk | contribs) at 22:26, 2 September 2004. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer science, a function is called linearithmic if it is of the form n · log n, that is, a product of a linear and a logarithmic term.

In terms of complexity, linearithmic is ω(n), O(n2) and Θ(n · log n). Thus, a linearithmic term grows faster than a linear term but slower than a quadratic term.

Some famous algorithms that run in linearithmic time include: