initial graph

graph
Jozef Jankaj 2021-05-02 19:21:56 +02:00
parent 0330148c92
commit b39780a2f5
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package graph;
public class Edge<T> {
Node<T> node1;
Node<T> node2;
}

View File

@ -0,0 +1,4 @@
package graph;
public class Graph {
}

View File

@ -0,0 +1,5 @@
package graph;
public class Node<T> {
T item;
}