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

Method push

src/class161/Code02_LCA1.java:82–87  ·  view source on GitHub ↗
(int fir, int sec, int edg)

Source from the content-addressed store, hash-verified

80 public static int stacksize, first, second, edge;
81
82 public static void push(int fir, int sec, int edg) {
83 fse[stacksize][0] = fir;
84 fse[stacksize][1] = sec;
85 fse[stacksize][2] = edg;
86 stacksize++;
87 }
88
89 public static void pop() {
90 --stacksize;

Callers 2

dfs3Method · 0.95
dfs4Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected