Ejemplo n.º 1
0
        public List(int v)
        {
            ListElement element = new ListElement(v);

            info = new ListInfo(element);
        }
Ejemplo n.º 2
0
 public ListInfo(ListElement element)
 {
     head = element;
     tail = element;
 }
Ejemplo n.º 3
0
 public ListElement(int v)
 {
     value = v;
     next  = null;
 }
Ejemplo n.º 4
0
 public ListInfo()
 {
     head = null;
     tail = null;
 }
Ejemplo n.º 5
0
 public ListElement()
 {
     next = null;
 }