Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
e513bd7e53 | ||
![]() |
a685b7db4a | ||
![]() |
e3006549a8 | ||
![]() |
44bccd0123 |
3 changed files with 45 additions and 10 deletions
1
loic.txt
Normal file
1
loic.txt
Normal file
|
@ -0,0 +1 @@
|
|||
loic
|
|
@ -3,19 +3,14 @@ package main;
|
|||
import org.graphstream.graph.*;
|
||||
import org.graphstream.graph.implementations.*;
|
||||
|
||||
import structure.Grid;
|
||||
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
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();
|
||||
Grid g=new Grid(5, 6,25);
|
||||
g.displayGrid();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,44 @@
|
|||
package structure;
|
||||
// cedric.gueguen@irisa.fr
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.Random;
|
||||
|
||||
|
||||
public class Grid {
|
||||
|
||||
private ArrayList<ArrayList<Integer>> m_grid=new ArrayList<>();
|
||||
|
||||
public Grid(int size_x, int size_y, int max_rand){
|
||||
this.generateGrid(size_x,size_y, max_rand);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
private void generateGrid(int size_x, int size_y, int max_rand){
|
||||
for(int x=0;x<size_x;x++){
|
||||
m_grid.add(new ArrayList<Integer>());
|
||||
for(int y=0;y<size_y;y++){
|
||||
m_grid.get(x).add( (int) (Math.random() * max_rand ));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public void displayGrid(){
|
||||
Iterator<ArrayList<Integer>> i=m_grid.iterator();
|
||||
|
||||
while(i.hasNext()){
|
||||
ArrayList<Integer> current=i.next();
|
||||
Iterator<Integer> j=current.iterator();
|
||||
|
||||
while(j.hasNext()){
|
||||
System.out.print(j.next() + " ");
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue