MCPcopy Create free account
hub / github.com/Seogeurim/CS-study / enqueue

Method enqueue

contents/data-structure/code/Queue/IQueue.java:7–7  ·  view source on GitHub ↗
(E e)

Source from the content-addressed store, hash-verified

5 public boolean isEmpty();
6
7 public void enqueue(E e);
8 public E dequeue();
9 public E peek();
10}

Callers

nothing calls this directly

Implementers 2

LinkedQueuecontents/data-structure/code/Queue/Lin
ArrayQueuecontents/data-structure/code/Queue/Arr

Calls

no outgoing calls

Tested by

no test coverage detected