PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/Generic/SetGeneric.cs

85 lines
2.0 KiB
C#
Raw Normal View History

2024-10-03 01:40:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectGasolineTanker.Generic
{
internal class SetGeneric<T>
where T : class
{
2024-10-03 01:42:04 +04:00
private readonly List<T?> _places;
2024-10-03 01:40:53 +04:00
2024-10-03 01:42:04 +04:00
public int Count => _places.Count;
private readonly int _maxCount;
2024-10-03 01:40:53 +04:00
public SetGeneric(int count)
{
2024-10-03 01:42:04 +04:00
_maxCount = count;
_places = new List<T?>(count);
2024-10-03 01:40:53 +04:00
}
public int Insert(T truck)
{
2024-10-03 01:42:04 +04:00
_places.Insert(0, truck);
return 0;
2024-10-03 01:40:53 +04:00
}
public bool Insert(T truck, int position)
{
2024-10-03 01:42:04 +04:00
if (position < 0 || position >= Count || Count >= _maxCount)
2024-10-03 01:40:53 +04:00
{
return false;
}
2024-10-03 01:42:04 +04:00
_places.Insert(position, truck);
2024-10-03 01:40:53 +04:00
return true;
}
public bool Remove(int position)
{
2024-10-03 01:42:04 +04:00
if (position < 0 || position >= Count)
2024-10-03 01:40:53 +04:00
{
return false;
}
2024-10-03 01:42:04 +04:00
_places.RemoveAt(position);
2024-10-03 01:40:53 +04:00
return true;
}
2024-10-03 01:42:04 +04:00
public T? this[int position]
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
get
{
if (position < 0 || position >= Count)
{
return null;
}
return _places[position];
}
set
{
if (position < 0 || position > Count || Count >= _maxCount)
{
return;
}
_places.Insert(position, value);
}
}
2024-10-03 01:40:53 +04:00
2024-10-03 01:42:04 +04:00
public IEnumerable<T?> GetTruck(int? maxTruck = null)
{
for (int i = 0; i < _places.Count; ++i)
2024-10-03 01:40:53 +04:00
{
2024-10-03 01:42:04 +04:00
yield return _places[i];
if (maxTruck.HasValue && i == maxTruck.Value)
{
yield break;
}
2024-10-03 01:40:53 +04:00
}
}
}
}