(Node above, Node below)
| 15 | } |
| 16 | |
| 17 | public void join(Node above, Node below) { |
| 18 | if (below != null) below.above = above; |
| 19 | if (above != null) above.below = below; |
| 20 | } |
| 21 | |
| 22 | public boolean push(int v) { |
| 23 | if (size >= capacity) return false; |
no outgoing calls