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