2025 init

This commit is contained in:
Romain Lefeuvre
2025-11-18 14:43:08 +01:00
commit 7155dd77be
39 changed files with 1134 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package fr.istic.vv;
import java.util.Comparator;
class BinaryHeap<T> {
public BinaryHeap(Comparator<T> comparator) { }
public T pop() { return null; }
public T peek() { return null; }
public void push(T element) { }
public int count() { return 0; }
}

View File

@@ -0,0 +1,10 @@
package fr.istic.vv;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class BinaryHeapTest {
}