MCPcopy Create free account
hub / github.com/SR-Sunny-Raj/Hacktoberfest2021-DSA / init

Method init

12. Queue/circularqueue.cpp:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6 int front,rear,size;
7 public:
8 void init(int n)
9 {
10 size=n;
11 arr=new int[n];
12 front=rear=-1;
13 }
14 int isempty()
15 {
16 return rear==-1;

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected