Jump to content

Linearithmic function

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Miym (talk | contribs) at 10:55, 10 January 2010 (move content to Time complexity). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer science, a linearithmic function (portmanteau of linear and logarithmic) is a function of the form n · log n (i.e., a product of a linear and a logarithmic term).

In terms of complexity, linearithmic is ω(n), o(n1+ε) for every ε > 0, and Θ(n · log n). Thus, a linearithmic term grows faster than a linear term but slower than a quadratic term.

See also