Pushes an element onto the stack. @param element element
(final int element)
| 198 | * @param element element |
| 199 | */ |
| 200 | public void push(final int element) { |
| 201 | add(element); |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Searches the specified element via binary search. |
no test coverage detected