diff --git a/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/ICollectionGenericObjects.cs b/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/ICollectionGenericObjects.cs new file mode 100644 index 0000000..f537a94 --- /dev/null +++ b/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/ICollectionGenericObjects.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectContainerShip.CollectionGenericObjects; + +public interface ICollectionGenericObjects + where T : class +{ + /// + /// Кол-во объектов в коллекции + /// + int Count { get; } + + /// + /// Установка макс кол-ва элементов + /// + int SetMaxCount { set; } + + /// + /// Добавление объекта в коллекцию + /// + /// Добавляемый объект + /// true - вставка прошла удачно, false - вставка не удалась + bool Insert (T obj); + + /// + /// Добавление объекта в коллекцию на конкретную позицию + /// + /// /// Добавляемый объект + /// /// Позиция + /// true - вставка прошла удачно, false - вставка не удалась + bool Insert (T obj, int position); + + /// + /// Удаление объекта из коллекции с конктретной позиции + /// + /// /// Добавляемый объект + /// true - удаление прошло удачно, false - удаление не удалось + bool Remove (int position); + + /// + /// Получение объекта по позиции + /// + /// /// Добавляемый объект + /// Объект + T? Get(int position); +} diff --git a/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/MassiveGenericObjects.cs b/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/MassiveGenericObjects.cs new file mode 100644 index 0000000..b5625b4 --- /dev/null +++ b/ProjectContainerShip/ProjectContainerShip/CollectionGenericObjects/MassiveGenericObjects.cs @@ -0,0 +1,109 @@ +namespace ProjectContainerShip.CollectionGenericObjects; + +/// +/// Параметризованный набор объектов +/// +/// Параметр: ограничение - ссылочный тип +public class MassiveGenericObjects : ICollectionGenericObjects + where T : class +{ + /// + /// Массив объектов, которые храним + /// + private T?[] _collection; + + public int Count => _collection.Length; + + public int SetMaxCount + { + set + { + if (value > 0) + { + if (_collection.Length > 0) + { + Array.Resize(ref _collection, value); + } + else + { + _collection = new T?[value]; + } + } + } + } + + /// + /// Конструктор + /// + public MassiveGenericObjects() + { + _collection = Array.Empty(); + } + + public T? Get(int position) + { + if (position >= 0 && position < Count) + { + return _collection[position]; + } + + return null; + } + + public int Insert(T obj) + { + for (int i = 0; i < Count; i++) + { + if (_collection[i] == null) + { + _collection[i] = obj; + return i; + } + } + return -1; + } + + public int Insert(T obj, int position) + { + + if (position < 0 || position >= Count) + { + return -1; + } + if (_collection[position] == null) + { + _collection[position] = obj; + return position; + } + for (int i = position + 1; i < Count; i++) + { + if (_collection[i] == null) + { + _collection[i] = obj; + return i; + } + } + for (int i = position - 1; i >= 0; i--) + { + if (_collection[i] == null) + { + _collection[i] = obj; + return i; + } + } + + return -1; + } + + public T Remove(int position) + { + if (position < 0 || position >= Count) + { + return null; + } + T obj = _collection[position]; + _collection[position] = null; + return obj; + } +} +} \ No newline at end of file