MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / Queue

Method Queue

Data Structures/QueueUsingLL.cpp:46–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45
46 Queue() {
47 size=0;
48 fron=new Node<T>(0);
49 rear=fron;
50 }
51
52 void enqueue(T data) {
53 if(size==0){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected