Class Cellule
java.lang.Object
|
+----Cellule
- public class Cellule
- extends Object
Une classe pour manipuler des cellules d'une liste chainee.
-
Cellule()
- Les constructeurs initialisent le tableau
-
Cellule(int)
-
-
afficheInfo()
- La méthode afficheInfo envoie sur la sortie standard le champ info
-
link(Cellule, Cellule)
- La méthode link relie une cellule a deux autres.
-
toString()
- La méthode toString envoie sur la sortie standard le champ info
Cellule
public Cellule()
- Les constructeurs initialisent le tableau
Cellule
public Cellule(int data)
link
public void link(Cellule avant,
Cellule apres)
- La méthode link relie une cellule a deux autres.
afficheInfo
public void afficheInfo()
- La méthode afficheInfo envoie sur la sortie standard le champ info
toString
public String toString()
- La méthode toString envoie sur la sortie standard le champ info
- Overrides:
- toString in class Object