vote up 8 vote down star

What is meant by "Constant Amortized Time" when talking about time complexity of an algorithm?

flag

57% accept rate

4 Answers

vote up 14 vote down check

Amortised time explained in simple terms:

If you do an operation say a million times, you don't really care about the worst-case or the best-case of that operation - what you care about is how much time is taken in total when you repeat the operation a million times.

So it doesn't matter if the operation is very slow once in a while, as long as "once in a while" is rare enough for the slowness to be diluted away. Essentially amortised time means "average time taken per operation, if you do many operations". Amortised time doesn't have to be constant; you can have linear and logarithmic amortised time or whatever else.

Let's take mats' example of a dynamic array, to which you repeatedly add new items. Normally adding an item takes constant time (that is, O(1)). But each time the array is full, you allocate twice as much space, copy your data into the new region, and free the old space. Assuming allocates and frees run in constant time, this enlargement process takes O(n) time where n is the current size of the array.

So each time you enlarge, you take about twice as much time as the last enlarge. But you've also waited twice as long before doing it! The cost of each enlargement can thus be "spread out" among the insertions. This means that in the long term, the total time taken for adding m items to the array is O(m), and so the amortised time (i.e. time per insertion) is O(1).

link|flag
vote up 9 vote down

It means that over time, the worst case scenario will default to O(1), or constant time. A common example is the dynamic array. If we have already allocated memory for a new entry, adding it will be O(1). If we haven't allocated it we will do so by allocating, say, twice the current amount. This particular insertion will not be O(1), but rather something else.

What is important is that the algorithm guarantees that after a sequence of operations the expensive operations will be amortised and thereby rendering the entire operation O(1).

Or in more strict terms,

There is a constant c, such that for every sequence of operations (also one ending with a costly operation) of length L, the time is not greater than c*L (Thanks Rafał Dowgird)

link|flag
"after a large enough amount of operations" - constant amortized time doesn't need this condition. There is a constant c, such that for every sequence of operations (also one ending with a costly operation) of length L, the time is not greater than c*L. – Rafał Dowgird Oct 14 '08 at 9:35
vote up 2 vote down

It basically means that in the worst case scenario the algorithm runs in constant time, averaged over a large number of operations. Which is nice.

link|flag
vote up 0 vote down

A very trivial search engine query for "Constant Amortized Time" turned that up in the first hit:

The special case of an amortized time of O(1) signifies that a sequence of n such operations takes only time O(n). One then refers to this as constant amortized time.

link|flag
Please, guys... Are we the mechanical turk Google user interface? Where is that a down vote? – Tomalak Oct 14 '08 at 8:41
Since one of the goals with SO is to become the repository for questions picked up by google and others, you create a kind of useless circle by just linking to a google query yourself. – Mats Fredriksson Oct 14 '08 at 8:44
Oh, right. Is SO going to replace Google and with it the need to think before you ask? But I will break the "endless circle" and remove the link. – Tomalak Oct 14 '08 at 8:47
Of course it will not replace google. If you think a question is too simple why don't you avoid posting a reply in the first place? – Mats Fredriksson Oct 14 '08 at 8:50
For the same reason someone put up a site named justfuckinggoogleit.com. Sometimes I can't help it. – Tomalak Oct 14 '08 at 8:52
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.