using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DumpTruck.Generics { /// /// Параметризованный набор объектов /// /// internal class SetGeneric where T : class { /// /// Массив объектов, которые храним /// private readonly List _places; /// /// Количество объектов в массиве /// public int Count => _places.Count; /// /// Максимальное количество объектов в списке /// private readonly int _maxCount; /// /// Конструктор /// /// public SetGeneric(int count) { _maxCount = count; _places = new List(count); } /// /// Добавление объекта в набор /// /// Добавляемый грузовик /// public int Insert(T truck) { return Insert(truck, 0); } /// /// Добавление объекта в набор на конкретную позицию /// /// Добавляемый грузовик /// Позиция /// public int Insert(T truck, int position) { if (position < 0 || position > Count || Count >= _maxCount) return -1; _places.Insert(position, truck); return position; } /// /// Удаление объекта из набора с конкретной позиции /// /// /// public bool Remove(int position) { if (position < 0 || position >= Count) return false; _places.RemoveAt(position); return true; } /// /// Получение объекта из набора по позиции /// /// /// public T? this[int position] { get { if (position < 0 || position >= Count) return null; return _places[position]; } set { if (position < 0 || position > Count || Count >= _maxCount) return; _places.Insert(position, value); } } /// /// Проход по списку /// /// public IEnumerable GetTrucks(int? maxTrucks = null) { for (int i = 0; i < _places.Count; ++i) { yield return _places[i]; if (maxTrucks.HasValue && i == maxTrucks.Value) { yield break; } } } } }