Basic tasks with priority queues in java.
parent
6b89476e26
commit
2edf415e2a
|
@ -0,0 +1,23 @@
|
|||
import java.util.*;
|
||||
|
||||
public class Program {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
var arr = new ArrayList<Integer>();
|
||||
|
||||
arr.add(-4);
|
||||
|
||||
var pq = new PriorityQueue<Integer>();
|
||||
pq.add(1);
|
||||
pq.add(5);
|
||||
pq.add(-3);
|
||||
pq.add(-7);
|
||||
|
||||
System.out.printf("Hello World: %d\n", pq.remove());
|
||||
System.out.printf("Hello World: %d\n", pq.remove());
|
||||
System.out.printf("Hello World: %d\n", pq.remove());
|
||||
System.out.printf("Hello World: %d\n", pq.remove());
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
import java.util.*;
|
||||
|
||||
public class Program2 {
|
||||
|
||||
public record Element(
|
||||
int weight) implements Comparable {
|
||||
|
||||
public int compareTo(Object o) {
|
||||
|
||||
if (!(o instanceof Element)) {
|
||||
throw new IllegalArgumentException("Got invalid class to compare: " + o.getClass());
|
||||
}
|
||||
|
||||
Element e = (Element)o;
|
||||
|
||||
return weight - e.weight;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "Element{weight = %d}".formatted(weight);
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
var pq = new PriorityQueue<Element>();
|
||||
pq.add(new Element(1));
|
||||
pq.add(new Element(5));
|
||||
pq.add(new Element(-3));
|
||||
pq.add(new Element(-7));
|
||||
|
||||
System.out.printf("Hello World: %s\n", pq.remove());
|
||||
System.out.printf("Hello World: %s\n", pq.remove());
|
||||
System.out.printf("Hello World: %s\n", pq.remove());
|
||||
System.out.printf("Hello World: %s\n", pq.remove());
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
# How to run
|
||||
|
||||
Run it with :!jbang % in vim.
|
Loading…
Reference in New Issue