Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Seogeurim/CS-study
/ peek
Method
peek
contents/data-structure/code/Stack/ArrayStack.java:41–45 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
39
}
40
41
@Override
42
public
E peek() {
43
if
(isEmpty())
return
null;
44
return
data[top];
45
}
46
}
Callers
nothing calls this directly
Calls
1
isEmpty
Method · 0.95
Tested by
no test coverage detected