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

Method push

src/class189/Code01_SCC1.java:87–92  ·  view source on GitHub ↗
(int u, int status, int e)

Source from the content-addressed store, hash-verified

85 public static int stacksize;
86
87 public static void push(int u, int status, int e) {
88 stack[stacksize][0] = u;
89 stack[stacksize][1] = status;
90 stack[stacksize][2] = e;
91 stacksize++;
92 }
93
94 public static void pop() {
95 stacksize--;

Callers 1

tarjan2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected