Add package
This commit is contained in:
parent
ca98db5776
commit
51b4434984
3 changed files with 26 additions and 1 deletions
7
algorithm/AODV.java
Normal file
7
algorithm/AODV.java
Normal file
|
@ -0,0 +1,7 @@
|
|||
package algorithm;
|
||||
|
||||
|
||||
|
||||
public class AODV{
|
||||
|
||||
}
|
|
@ -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
5
structure/Grid.java
Normal file
|
@ -0,0 +1,5 @@
|
|||
package structure;
|
||||
|
||||
public class Grid {
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue