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

Method push

src/class185/Code02_Game1.java:49–54  ·  view source on GitHub ↗
(int u, int f, int e)

Source from the content-addressed store, hash-verified

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

Callers 2

dfs2Method · 0.95
getSize2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected