Add package

This commit is contained in:
Loic Guegan 2016-03-01 11:30:35 +01:00
parent ca98db5776
commit 51b4434984
3 changed files with 26 additions and 1 deletions

7
algorithm/AODV.java Normal file
View file

@ -0,0 +1,7 @@
package algorithm;
public class AODV{
}

View file

@ -1,8 +1,21 @@
package main;
import org.graphstream.graph.*;
import org.graphstream.graph.implementations.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Graph graph = new SingleGraph("Tutorial 1");
graph.addNode("A");
graph.addNode("B");
graph.addNode("C");
graph.addEdge("AB", "A", "B");
graph.addEdge("BC", "B", "C");
graph.addEdge("CA", "C", "A");
graph.display();
}
}

5
structure/Grid.java Normal file
View file

@ -0,0 +1,5 @@
package structure;
public class Grid {
}