Unit tests the MaxPQ data type. @param args the command-line arguments
(String[] args)
| 175 | * @param args the command-line arguments |
| 176 | */ |
| 177 | public static void main(String[] args) { |
| 178 | MaxPQ pq = new MaxPQ(); |
| 179 | pq.insert(123); |
| 180 | pq.delMax(); |
| 181 | } |
| 182 | |
| 183 | } |