MCPcopy Index your code
hub / github.com/Seogeurim/CS-study / enqueue

Method enqueue

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

Source from the content-addressed store, hash-verified

18 }
19
20 @Override
21 public void enqueue(E e) {
22 list.addLast(e);
23 }
24
25 @Override
26 public E dequeue() {

Callers 1

mainMethod · 0.95

Calls 1

addLastMethod · 0.65

Tested by

no test coverage detected