Ask Question

What are some of the other operations that might be implemented for a queue?

+1
Answers (1)
  1. 4 January, 18:32
    0
    Queue is the linear structure in which the operation are perform. It basically follow the FIFO concept that is first in first out concept. Queue is also use in array as a linked list, which is mainly used in the computer programs. REAR is the operation in which the elements are added in only one end.

    Some of the other operations that are implemented for a queue are as follow:

    Enqueue () - This operation are use to add the elements in the queue.

    Dequeue () - This operation is use to remove the elements from queue.

    Isfull () - This type of operation basically check that whether the queue is full or not.

    Isempty () - This operation are used to check that the queue is empty.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What are some of the other operations that might be implemented for a queue? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers