1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. How many times the insert and extract mi...
Q.

How many times the insert and extract min operations are invoked per vertex?

A. 1
B. 2
C. 3
D. 0
Answer» A. 1
Explanation: insert and extract min operations are invoked only once per vertex because each vertex is added only once to the set and each edge in the adjacency list is examined only once during the course of algorithm.

Discussion