You do not have permission to edit this page, for the following reason:

The action you have requested is limited to users in one of the groups: Users, Administrators.


You can view and copy the source of this page.

Return to GATE2013 q44.

Consider the following operation along with Enqueue and Dequeue operations on queues, where k is a global parameter.

 <code class="language-c">
MultiDequeue(Q){ 
	m = k 
	while (Q is not empty) and (m > 0) { 
		Dequeue(Q) 
		m = m – 1 
	} 
} 
</code>

What is the worst case time complexity of a sequence of $n$ queue operations on an initially empty queue?

(A) $Θ(n)$

(B) $Θ(n + k)$

(C) $Θ(nk)$

(D) $Θ(n^2)$





blog comments powered by Disqus