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

Method push

src/class122/Code01_MaxFlow2.java:67–72  ·  view source on GitHub ↗
(int u, int f, int e)

Source from the content-addressed store, hash-verified

65 public static int stackSize, u, f, e;
66
67 public static void push(int u, int f, int e) {
68 ufe[stackSize][0] = u;
69 ufe[stackSize][1] = f;
70 ufe[stackSize][2] = e;
71 stackSize++;
72 }
73
74 public static void pop() {
75 --stackSize;

Callers 2

dfs1Method · 0.95
dfs2Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected