Which of the four operations below can be used to implement the other
three for the skew heap?

a. decreaseKey
b. deleteMin
c. insert
d. merge
e. none of the above


D

Computer Science & Information Technology

You might also like to view...

Assume that t is an object of class Test, which has member functions a(), b(), c() and d(). If the functions a(), b() and c() all return references to an object of class Test (using the dereferenced this pointer) and function d() returns void, which of the following statements will not produce a syntax error:

a. t.a().b().d(); b. a().b().t; c. t.d().c(); d. t.a().t.d();

Computer Science & Information Technology

Which of the following is not a kind of inheritance in C++?

a. public. b. private. c. static. d. protected.

Computer Science & Information Technology

Given the following member function prototype and function call, why will the compiler return a message saying that setAge is not a member of person?

void setAge (int, int); // function prototype person me; me.setAge (50); // function call

Computer Science & Information Technology

Word automatically formats hyperlinks to Web pages and displays them in underlined _____ text.

A. red B. green C. blue D. black

Computer Science & Information Technology