We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b237ab5 commit 60103c2Copy full SHA for 60103c2
src/main/java/algorithm/Algorithm.java
@@ -0,0 +1,7 @@
1
+package algorithm;
2
+
3
+import java.util.List;
4
5
+public interface Algorithm<T> {
6
+ List<T> findRoute(Graph<T> graph, T source, T target);
7
+}
0 commit comments