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

Method push

src/class194/Code04_Blockade1.java:53–59  ·  view source on GitHub ↗
(int u, int status, int fa, int e)

Source from the content-addressed store, hash-verified

51 public static int stacksize;
52
53 public static void push(int u, int status, int fa, int e) {
54 stack[stacksize][0] = u;
55 stack[stacksize][1] = status;
56 stack[stacksize][2] = fa;
57 stack[stacksize][3] = e;
58 stacksize++;
59 }
60
61 public static void pop() {
62 stacksize--;

Callers 2

tarjan2Method · 0.95
dpOnTree2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected