What is amortized cost?

I hear this "armortized" cost stuff everywhere, for example, amortized cost of BST search or amortized cost of bubble sort. What does amortized mean? my teach don't explain it well.
Last edited on
so amortized cost is basically the average cost? or am i understand that wrong?
No, it is a method of rating the "cost" (time and space) used by an algorithm.

Check out this FAQ section for more:
http://www.cplusplus.com/faq/sequences/sequencing/sort-algorithms/#Big-O
(And make sure to click the links too.)
Topic archived. No new replies allowed.