MCPcopy Create free account
hub / github.com/anupam-kumar-krishnan/Competitive_Programming / Queue

Class Queue

Basic Programming/queue.c:7–11  ·  view source on GitHub ↗

A structure to represent a queue

Source from the content-addressed store, hash-verified

5
6// A structure to represent a queue
7struct Queue {
8 int front, rear, size;
9 unsigned capacity;
10 int* array;
11};
12
13// function to create a queue
14// of given capacity.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected