Implementation of a Queue If Rear=Start-1 or (Rear=Maximum and Start=1) Then Output Queue Empty Else Data=queue(Start) EndIf If Start=Maximum Then Start=1 Else Start=Start+1 EndIf Removing an item from the queue