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

Method push

src/class191/Code01_CutEdge1.java:40–46  ·  view source on GitHub ↗
(int u, int preEdge, int status, int e)

Source from the content-addressed store, hash-verified

38 public static int stacksize;
39
40 public static void push(int u, int preEdge, int status, int e) {
41 stack[stacksize][0] = u;
42 stack[stacksize][1] = preEdge;
43 stack[stacksize][2] = status;
44 stack[stacksize][3] = e;
45 stacksize++;
46 }
47
48 public static void pop() {
49 stacksize--;

Callers 1

tarjan2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected