
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Amortized Cost of Meld Operation
Calculating the amortized cost of meld operation is a difficult task. The major difficulty is in accumulating for the wide variations in the costs of an operation performed at di?erent points in a random sequence of operations. Although our design goal is affected by the costs of sequence of operations, de?ning the notion of amortized cost of an operation in terms of the costs of sequences of operations leads nothing. Implementing a potential function to o? set the variations in the actual costs is a perfect way of handling the situation.In the next topic we discuss the notion of amortized cost.
Let B be an Abstract data type(ADT) with basic operations P = {P1, P2,……, Pk} and let DS be a data structure implementing B. Let F be a potential function specified on the con?gurations of the data structures to non-negative real number. Let further that F(Φ) = 0. Let DSj specify a con?guration we obtain if we perform an operation Pk on a con?guration DS and let C denote the actual cost of performing Pk on DS.
Then, the amortized cost of Pk operating on DS, denoted as a(Pk, DS), is given by
a(Pk, DS) = C + F(DSj) – F (DS)
If a(Pk, DS)≤ cjg(m) for all con?guration DS of size m, then we conclude that the amortized cost of Pk is O(g(m)).