Ejemplo n.º 1
0
 // add a new element to the begining list
 public void addAtStart(ListElement <T> listElement)
 {
     listElement.Next = Head;
     Head             = listElement;
 }
Ejemplo n.º 2
0
 abstract public bool exist(int matricule, ListElement <T> listElement);
Ejemplo n.º 3
0
 abstract public void replace(int matricule, ListElement <T> listElement);
Ejemplo n.º 4
0
 // Constructor
 public IList()
 {
     Head = null;
 }