aeds2/fonte/u06 Estruturas de dados bás.../java/matriz/Celula.java

21 lines
453 B
Java

class Celula {
public int elemento;
public Celula inf, sup, esq, dir;
public Celula(){
this(0, null, null, null, null);
}
public Celula(int elemento){
this(elemento, null, null, null, null);
}
public Celula(int elemento, Celula inf, Celula sup, Celula esq, Celula dir){
this.elemento = elemento;
this.inf = inf;
this.sup = sup;
this.esq = esq;
this.dir = dir;
}
}