InterviewSolution
Saved Bookmarks
| 1. |
What is the use of make_heap in the heap operation?(a) Rearrange a heap(b) Deform a heap(c) Form a heap(d) Delete a heapThe question was asked in quiz.I'm obligated to ask this question of Standard Library Algorithms in division Algorithms, Objects & Iterators in C++ of C++ |
|
Answer» CORRECT OPTION is (C) FORM a heap Explanation: It is used to rearranges a range so that it becomes a heap. |
|