Can someone explain why the following algorithm for merging heaps isn't correct?
Lets say we have two (max) heaps H1 and H2.
To merge them:
create an artificial dummy node whose key value is negative infinity and place it at the root with H1 and H2 attached as children. Then do an O(log n) bubble down step that swaps the root eventually to a leaf position, where it is ultimately deleted. The resulting structure is a merged heap.
I have seen claims both on wikipedia and elsewhere that merging two equal sized heaps is a Theta(n) operation, in contradiction with what I've written above.