Edit grid

This commit is contained in:
Loic Guegan 2016-03-01 12:11:16 +01:00
parent a685b7db4a
commit e513bd7e53
2 changed files with 44 additions and 10 deletions

View file

@ -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();
}
}

View file

@ -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();
}
}
}