When I ran to this topic.
I read in this book on the bottom of page 5-1 that Binomial Queues, Fibonacci Heap and Skew Heap have O(1) amortized cost for insert operations and O(log n) amortized cost of delete operations. Next the authors write that the Pairing Heap has O(1) amortized cost for insert operations and O(log n) amortized cost for delete operations.
on this homework the third (3) assignment and solution on this link without defining the type of heap wrote O(log n) for insert and O(1) to delete.
on this homework another the author says a Binomial Heap has O(log n) for insert operations and O(1) amortized cost for delete operations.
The question is, which one is correct? I'm quite confused.