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

Method push

src/class191/Code05_EBCC1.java:49–55  ·  view source on GitHub ↗
(int u, int preEdge, int status, int e)

Source from the content-addressed store, hash-verified

47 public static int stacksize;
48
49 public static void push(int u, int preEdge, int status, int e) {
50 stack[stacksize][0] = u;
51 stack[stacksize][1] = preEdge;
52 stack[stacksize][2] = status;
53 stack[stacksize][3] = e;
54 stacksize++;
55 }
56
57 public static void pop() {
58 stacksize--;

Callers 1

tarjan2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected