Пример #1
0
 public void Addcar(car c)
 {
     if (first == null)
     {
         first = new carListItem(c);
         last  = first;
     }
     else
     {
         last.next = new carListItem(c);
         last      = last.next;
     }
     ++numElements;
 }
Пример #2
0
        public static void Main(string[] args)
        {
            carList list = new carList(new car("porshe0", "puk", "6666", "20.584", 20));

            list.Addcar(new car("porshe1", "puk", "6666", "20.584", 2));
            list.Addcar(new car("porshe2", "puk", "6666", "20.584", 10));
            list.Addcar(new car("porshe3", "puk", "6664", "20.584", 8));
            list.Addcar(new car("porshe4", "puk", "6664", "20.584", 6));
            list.Addcar(new car("porshe5", "puk", "6666", "20.584", 2));
            Console.WriteLine(list);
            car res = list.Findcar("porshe5");

            Console.WriteLine(res);

            carList resList = list.FindAllcar("6664");

            Console.WriteLine(resList);


            Console.Write("Press any key to continue . . . ");
            Console.ReadKey(true);
        }
Пример #3
0
 public carList(car c)
 {
     first = new carListItem(c);
     last  = first;
     ++numElements;
 }
Пример #4
0
 public carListItem(car c)
 {
     Cars = c;
     //next=null;
 }