Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Fixed Size Queue With Array

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Fixed Size Queue With Array. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

ExtraHop Networks telemetry components may need a bounded FIFO buffer for temporarily holding network events. Implement a fixed-size queue using an array and circular indexing so that insertions and removals remain efficient without shifting elements.

Create fixed_queue(capacity, operations). The function must process operations in order and return the result of each operation:

  1. ['enqueue', value]: Add value to the rear. Return True if successful, or False if the queue is full.
  2. ['dequeue']: Remove and return the oldest value, or return None if the queue is empty.
  3. ['front']: Return the oldest value without removing it, or None if empty.
  4. ['is_empty']: Return whether the queue contains no values.
  5. ['is_full']: Return whether the queue has reached capacity.

The queue must preserve FIFO order. Reusing positions freed by dequeue is required, and enqueue or dequeue must not shift existing elements.

Constraints

  • 1 <= capacity <= 10^5
  • 0 <= len(operations) <= 10^5
  • Each enqueued value is an integer
  • Queue storage must remain O(capacity)

Function Signature

def fixed_queue(capacity, operations):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output