Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/Seogeurim/CS-study
/ IStack
Interface
IStack
contents/data-structure/code/Stack/IStack.java:3–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
package
Stack;
2
3
public
interface
IStack<E> {
4
public
int
size();
5
public
boolean isEmpty();
6
7
public
void
push(E e);
8
public
E pop();
9
public
E peek();
10
}
Callers
10
size
Method · 0.65
lis
Function · 0.65
isEmpty
Method · 0.65
getShortestDistance
Method · 0.65
getShortestDistance2
Method · 0.65
getMSTCost
Method · 0.65
addChlid
Method · 0.65
main
Function · 0.65
main
Function · 0.65
changeServer
Method · 0.65
Implementers
2
LinkedStack
contents/data-structure/code/Stack/Lin
ArrayStack
contents/data-structure/code/Stack/Arr
Calls
no outgoing calls
Tested by
no test coverage detected