MCPcopy Index your code
hub / github.com/careercup/ctci / removeBottom

Method removeBottom

java/Chapter 3/Question3_3/Stack.java:43–49  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 }
42
43 public int removeBottom() {
44 Node b = bottom;
45 bottom = bottom.above;
46 if (bottom != null) bottom.below = null;
47 size--;
48 return b.value;
49 }
50}
51

Callers 1

leftShiftMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected