70717273747576
Waypoint item = this.head.getWaypoint(); head = head.getNext(); return item; } throw new EmptyListException("Die Liste ist leer"); }
99100101102103104105106107
*/ public boolean remove(Waypoint wp) throws EmptyListException { if (head==null) { throw new EmptyListException("The PriorityQueue is empty"); } return head.remove(wp); }