Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/Seogeurim/CS-study
/ IQueue
Interface
IQueue
contents/data-structure/code/Queue/IQueue.java:3–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
package
Queue;
2
3
public
interface
IQueue<E> {
4
public
int
size();
5
public
boolean isEmpty();
6
7
public
void
enqueue(E e);
8
public
E dequeue();
9
public
E peek();
10
}
Callers
2
size
Method · 0.65
isEmpty
Method · 0.65
Implementers
2
LinkedQueue
contents/data-structure/code/Queue/Lin
ArrayQueue
contents/data-structure/code/Queue/Arr
Calls
no outgoing calls
Tested by
no test coverage detected