Ejemplo n.º 1
0
        public void Setup()
        {
            //List container
            linkedList  = new LinkedListCustom.LinkedList <char>();
            linkedList2 = new LinkedListCustom.LinkedList <char>();
            //Links

            /*link1 = new Node<char>('a', link2, null);
            *  link2 = new Node<char>('b', link3, link1);
            *  link3 = new Node<char>('c', link4, link2);
            *  link4 = new Node<char>('d', null, link3);*/
        }
Ejemplo n.º 2
0
 public void Setup()
 {
     //List container
     studentList  = new LinkedListCustom.LinkedList <Student>();
     studentList2 = new LinkedListCustom.LinkedList <Student>();
 }