Chetan Dattachetan77.hashnode.dev·Jun 9, 202419 Java - Priority Queue, Compartor vs ComparblePriority Queue Queue is an interface, child of Collection interface. Generally Queue follows FIFO approach, but there are exceptions like PriorityQueue Supports all the methods available in Collection + some other methods mentioned below Method...Discuss·74 readsJavapriority queue
Sudarshan Doiphodesudarshandoiphode.hashnode.dev·Mar 8, 2024Comparable vs Comparator in easy way 🤓Introduction : In Java, Comparable & Comparator are two interfaces used for sorting collections of objects. Both are helpful for sorting collections of objects of custom classes. All wrapper classes by default implement Comparable, so we can directly...Discuss·12 likes·58 readscomparable