Exemplo n.º 1
0
        private void SetList()
        {
            int[] _arr = new int[] { 1, 2, 5, 3, 9, 4 };

            _lc = CreateNode(_lc, _arr, 0);
            _lc.Print();
        }
Exemplo n.º 2
0
 public void Run()
 {
     SetList();
     DeleteNode(_lc, 5);
     Console.WriteLine("updated list: ");
     _lc.Print();
 }