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

Method push

src/class194/Code01_RoadsMeet1.java:54–60  ·  view source on GitHub ↗
(int u, int status, int fa, int e)

Source from the content-addressed store, hash-verified

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

Callers 2

tarjan2Method · 0.95
dfs2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected