MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / CircularQueue

Class CircularQueue

Programs/Circular_Queue.java:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6 }
7
8 static class CircularQueue {Node first, last;}
9
10 static void Insert(CircularQueue cq, int value) {
11 Node n = new Node();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected