Computer Science, asked by muhammadshahab684, 4 months ago

Write algorithm of each operation of de-Queue?

Answers

Answered by komuraiahpaidipala
0

Answer:

Mainly the following four basic operations are performed on queue:

Enqueue: Adds an item to the queue. If the queue is full, then it is said to be an Overflow condition.

Dequeue: Removes an item from the queue. ...

Front: Get the front item from queue.

Rear: Get the last item from queue.

Similar questions