Q.1.
What is the time complexity for inserting a new item in a ternary heap of n elements?
Q.2.
Is decrease priority operation performed more quickly in a ternary heap with respect to the binary heap.
Q.3.
What is the time complexity for decreasing priority of key in a minimum ternary heap of n elements?
Q.4.
What is the time complexity for increasing priority of key in a maximum ternary heap of n elements?
Q.5.
What is the time complexity for deleting root key in a ternary heap of n elements?
Q.6.
What is the time complexity for increasing priority of key in a minimum ternary heap of n elements?
Q.7.
What is the time complexity for decreasing priority of key in a maximum ternary heap of n elements?
Q.8.
Do ternary heap have better memory cache behavior than binary heap.
Q.9.
What is the time complexity for creating a ternary heap using swapping?
Q.10.
Which of the following is the application of minimum ternary heap?