mirror of https://github.com/TheMessik/TreeLib
initial graph
parent
0330148c92
commit
b39780a2f5
|
@ -0,0 +1,6 @@
|
||||||
|
package graph;
|
||||||
|
|
||||||
|
public class Edge<T> {
|
||||||
|
Node<T> node1;
|
||||||
|
Node<T> node2;
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
package graph;
|
||||||
|
|
||||||
|
public class Graph {
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
package graph;
|
||||||
|
|
||||||
|
public class Node<T> {
|
||||||
|
T item;
|
||||||
|
}
|
Loading…
Reference in New Issue