MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / peek

Method peek

Gfg/Java/Implementation of Stack.java:17–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15 return stackArray[top--];
16 }
17 public long peek() {
18 return stackArray[top];
19 }
20 public boolean isEmpty() {
21 return (top == -1);
22 }

Callers 4

getSkylineMethod · 0.45
buildTreeMethod · 0.45
encodeMethod · 0.45
nextLargerElementMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected