Wrap your Queue inside a wrapper object, and never add negative values. Then you can use your queue as normal, knowing the lowest value will be non-negative.
Here's a rough draft. I didn't compile it or anything, but it's an idea. Here's an example of that.
import java.util.*;
class PositiveQueue<E extends Number> extends PriorityQueue<Number> {
public boolean offer(E e) {
if(isNegative(e)) return false;
return super.offer(e);
}
private static boolean isNegative(Number n) {
// add logic here
return n.intValue() < 0;
}
public static void main(String[] args) {
PositiveQueue<Short> q = new PositiveQueue<Short>();
q.offer((short)4);
q.offer((short)7);
q.offer((short)2);
q.offer((short)-5);
q.offer((short)5);
while(q.peek() != null) System.out.println(q.poll());
}
}
C:\Documents and Settings\glowcoder\My Documents>javac PositiveQueue.java
C:\Documents and Settings\glowcoder\My Documents>java PositiveQueue
2
4
5
7