ISEbd-12_Sinelnikova_A.V._S.../ProjectCruiser/CollectionGenericObjects/MassiveGenericObjects.cs

148 lines
5.1 KiB
C#
Raw Normal View History

using ProjectCruiser.Exceptions;
2024-03-21 10:52:11 +04:00
namespace ProjectCruiser.CollectionGenericObjects
{
/// <summary>
/// Параметризованный набор объектов
/// </summary>
/// <typeparam name="T">Параметр: ограничение - ссылочный тип</typeparam>
public class MassiveGenericObjects<T> : ICollectionGenericObjects<T>
where T : class
{
/// <summary>
/// Массив объектов, которые храним
/// </summary>
private T?[] _collection;
public int Count => _collection.Length;
public int MaxCount
{
get
{
return _collection.Length;
}
set
{
if (value > 0)
{
if (_collection.Length > 0)
{
Array.Resize(ref _collection, value);
}
else
{
_collection = new T?[value];
}
}
}
}
2024-03-21 10:52:11 +04:00
public CollectionType GetCollectionType => CollectionType.Massive;
2024-03-21 10:52:11 +04:00
/// <summary>
/// Конструктор
/// </summary>
public MassiveGenericObjects()
{
_collection = Array.Empty<T?>();
}
public T? Get(int position)
{
// TODO проверка позиции
// TODO выбром позиций, если выход за границы массива
// TODO выбром позиций, если объект пустой
if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position);
if (_collection[position] == null) throw new ObjectNotFoundException(position);
2024-03-21 10:52:11 +04:00
return _collection[position];
}
2024-03-21 10:52:11 +04:00
public int Insert(T obj)
{
// TODO вставка в свободное место набора
// TODO выброc позиций, если переполнение
2024-03-21 10:52:11 +04:00
int index = 0;
while (index < Count && _collection[index] != null)
2024-03-21 10:52:11 +04:00
{
index++;
}
if (index < Count)
{
_collection[index] = obj;
return index;
}
throw new CollectionOverflowException(Count);
2024-03-21 10:52:11 +04:00
}
2024-03-21 10:52:11 +04:00
public int Insert(T obj, int position)
{
// TODO проверка позиции
// TODO проверка, что элемент массива по этой позиции пустой, если нет, то
// ищется свободное место после этой позиции и идет вставка туда
// если нет после, ищем до
2024-03-21 10:52:11 +04:00
// TODO вставка
// TODO выбром позиций, если переполнение
// TODO выбром позиций, если выход за границы массива
if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position);
2024-03-21 10:52:11 +04:00
if (_collection[position] != null)
2024-03-21 10:52:11 +04:00
{
bool pushed = false;
for (int index = position + 1; index < Count; index++)
{
if (_collection[index] == null)
{
position = index;
pushed = true;
break;
}
}
2024-03-21 10:52:11 +04:00
if (!pushed)
2024-03-21 10:52:11 +04:00
{
for (int index = position - 1; index >= 0; index--)
{
if (_collection[index] == null)
{
position = index;
pushed = true;
break;
}
}
2024-03-21 10:52:11 +04:00
}
if (!pushed)
2024-03-21 10:52:11 +04:00
{
throw new CollectionOverflowException(Count);
2024-03-21 10:52:11 +04:00
}
}
_collection[position] = obj;
return position;
2024-03-21 10:52:11 +04:00
}
2024-03-21 10:52:11 +04:00
public T Remove(int position)
{
// TODO проверка позиции
// TODO удаление объекта из массива, присвоив элементу массива значение null
// TODO выбром позиций, если выход за границы массива
// TODO выбром позиций, если объект пустой
if (position < 0 || position >= Count) throw new PositionOutOfCollectionException(position);
if (_collection[position] == null) throw new ObjectNotFoundException(position);
T? temp = _collection[position];
2024-03-21 10:52:11 +04:00
_collection[position] = null;
return temp;
2024-03-21 10:52:11 +04:00
}
public IEnumerable<T?> GetItems()
{
for (int i = 0; i < _collection.Length; ++i)
{
yield return _collection[i];
}
}
2024-03-21 10:52:11 +04:00
}
}