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

Method push

src/class196/Code01_2SAT1.java:43–48  ·  view source on GitHub ↗
(int u, int status, int e)

Source from the content-addressed store, hash-verified

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

Callers 1

tarjan2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected