STEP 1 IF(FRONT=0 and REAR=MAX-1) or REAR = FRONT -1 then Write "OVERFLOW" Goto step 4 ENDSTEP 2SET VAL = QUEUE(FRONT)IF FRONT = REAR FRONT = REAR = -1 ELSEIF FRONT = MAX -1 SET FRONT = 0ELSE SET FRONT = FRONT+1[END OF IF]
void enqueue(queue,element){ if(queue.size()==max) { //check for overflow return overflowError; } else( if(isEmpty()){ // If the queue is empty, both front and rear need to be set to 0 (start position) queue.f++; queue.r++; } else{ // Rear end to be incremented to make space in queue queue.r++; } )}
void enqueue(queue,element){ if(queue.size()==max) { //check for overflow return overflowError; } else( if(isEmpty()){ // If the queue is empty, both front and rear need to be set to 0 (start position) queue.f++; queue.r=(r+1)%MAX; } else{ // Rear end to be incremented to make space in queue queue.r++; } )}