/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package heappriorityqueue; import java.util.*; /** * * @author kvaradar */ public class DefaultComparator implements Comparator { public int compare(E a, E b) throws ClassCastException { return ((Comparable) a).compareTo(b); } }