MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / push

Method push

src/class185/Code07_HideSeek1.java:99–105  ·  view source on GitHub ↗
(int u, int f, int t, int e)

Source from the content-addressed store, hash-verified

97 public static int stacksize;
98
99 public static void push(int u, int f, int t, int e) {
100 stack[stacksize][0] = u;
101 stack[stacksize][1] = f;
102 stack[stacksize][2] = t;
103 stack[stacksize][3] = e;
104 stacksize++;
105 }
106
107 public static void pop() {
108 --stacksize;

Callers 3

dfs3Method · 0.95
dfs4Method · 0.95
getSize2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected