Removes all the elements of the priority queue.
()
| 160 | * Removes all the elements of the priority queue. |
| 161 | */ |
| 162 | @Override |
| 163 | public void clear() { |
| 164 | Arrays.fill(elements, null); |
| 165 | size = 0; |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Inserts the element to the priority queue. |