Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice
/ pop
Method
pop
Gfg/Java/Implementation of Stack.java:14–16 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
12
stackArray[++top] = j;
13
}
14
public
long pop() {
15
return
stackArray[top--];
16
}
17
public
long peek() {
18
return
stackArray[top];
19
}
Callers
15
main
Method · 0.95
calculateSpan
Method · 0.45
levelOrder
Function · 0.45
topView
Method · 0.45
buildTree
Function · 0.45
nextLargerElement
Method · 0.45
merge
Function · 0.45
buildTree
Function · 0.45
buildTree
Function · 0.45
bottomView
Function · 0.45
buildTree
Function · 0.45
huffmanEncode
Function · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected