public void AListClear36Test()
 {
     var a = new AList2<Person>();
     a.Init(mas);
     a.Clear();
     int size = a.Size();
     Assert.AreEqual(0, size);
 }
 public void AListClear36Test()
 {
     int[] mas = new int[36] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 33, 34, 35, 36 };
     var a = new AList2<int>();
     a.Init(mas);
     a.Clear();
     int size = a.Size();
     Assert.AreEqual(0, size);
 }
Exemple #3
0
        static void Main(string[] args)
        {
            AList2 arr0 = new AList2();
            int[] array = { 10, 1, 2, 5, 8 };

            arr0.Init(array);
            arr0.Output();

            Console.WriteLine("Min = " + arr0.Min());
            Console.WriteLine("Min index = " + arr0.MinIndex());
            Console.WriteLine("Max = " + arr0.Max());
            Console.WriteLine("Max index = " + arr0.MaxIndex());
            Console.WriteLine("__________________________________");

            arr0.AddStart(2);
            arr0.AddEnd(7);
            arr0.AddPos(20, 1);
            arr0.Output();
            Console.WriteLine("__________________________________");

            arr0.DelStart();
            arr0.DelEnd();
            arr0.DelPos(2);
            arr0.Output();
            Console.WriteLine("__________________________________");

            arr0.Reverse();
            arr0.Output();
            Console.WriteLine("__________________________________");
            arr0.HalfReverse();
            arr0.Output();
            Console.WriteLine("__________________________________");

            Console.WriteLine("Index = 2: " + arr0.Get(2));
            Console.WriteLine("__________________________________");
            arr0.Set(-78, 3);
            arr0.Output();
            Console.WriteLine("__________________________________");
            arr0.Sort();
            arr0.Output();
            Console.WriteLine("__________________________________");
            arr0.Clear();
            arr0.Output();

            Console.ReadLine();
        }
Exemple #4
0
 public void AListClear36Test()
 {
     var a = new AList2();
     int[] mas = new int[36];
     a.Init(mas);
     a.Clear();
     int size = a.Size();
     Assert.AreEqual(0, size);
 }