Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/careercup/ctci
/ peek
Method
peek
java/Chapter 3/Question3_5/MyQueue.java:33–36 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
31
}
32
33
public
T peek() {
34
shiftStacks();
35
return
stackOldest.peek();
// retrieve the oldest item.
36
}
37
38
public
T remove() {
39
shiftStacks();
Callers
9
main
Method · 0.95
addNewNumber
Method · 0.45
getMedian
Method · 0.45
min
Method · 0.45
min
Method · 0.45
add
Method · 0.45
getNextSongToPlay
Method · 0.45
removeMin
Method · 0.45
getKthMagicNumber
Method · 0.45
Calls
1
shiftStacks
Method · 0.95
Tested by
no test coverage detected