InterviewSolution
Saved Bookmarks
| 1. |
What is the amortized efficiency of skew merge?(a) O(N)(b) O( log N)(c) O( N log N)(d) O(N^2)Question is from Heap in chapter Heap of Data Structures & Algorithms IThis question was posed to me during an interview for a job. |
|
Answer» CORRECT option is (b) O( log N) The best explanation: The AMORTIZED efficiency of a skew heap is mathematically FOUND to be O( log N). |
|