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

Method push

src/class161/Code06_Tourism1.java:100–105  ·  view source on GitHub ↗
(int fir, int sec, int edg)

Source from the content-addressed store, hash-verified

98 public static int stacksize, first, second, edge;
99
100 public static void push(int fir, int sec, int edg) {
101 fse[stacksize][0] = fir;
102 fse[stacksize][1] = sec;
103 fse[stacksize][2] = edg;
104 stacksize++;
105 }
106
107 public static void pop() {
108 --stacksize;

Callers 2

dfs3Method · 0.95
dfs4Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected