Buscar
Estás en modo de exploración. debe iniciar sesión para usar MEMORY

   Inicia sesión para empezar


Por supuesto:

Computer Science AQA A level

» Iniciar este curso
(Practica preguntas similares gratis)
Pregunta:

Program how an item is removed from a circular queue

Autor: Will Parker



Respuesta:

If (!Empty()) { string r = QueueArray[front]; QueueArray[front] = ""; front = (front + 1) % capacity; count--; return r; } else { throw new InvalidOperationException("Invalid operation. The queue is empty."); } Removing at item removes the first item. You don’t search for it


0 / 5  (0 calificaciones)

1 answer(s) in total