PIbd-23_Vrazhkin_S_A_Electr.../lab1/Generics/SetGeneric.cs

65 lines
1.6 KiB
C#
Raw Normal View History

2023-10-17 13:49:31 +04:00
namespace ElectricLocomotive;
2023-10-31 11:39:52 +04:00
public class SetGeneric <T> where T : class
2023-10-17 13:49:31 +04:00
{
2023-10-31 13:25:13 +04:00
private readonly List<T?> _places;
2023-10-17 13:49:31 +04:00
2023-10-31 13:25:13 +04:00
public int Count => _places.Count;
private readonly int _maxCount;
2023-10-17 13:49:31 +04:00
public SetGeneric(int count)
{
2023-10-31 13:25:13 +04:00
_maxCount = count;
_places = new List<T>(count);
2023-10-17 13:49:31 +04:00
}
2023-10-31 13:25:13 +04:00
public bool Insert(T electricLocomotiv)
2023-10-17 13:49:31 +04:00
{
2023-10-31 13:25:13 +04:00
if (_places.Count == _maxCount)
return false;
Insert(electricLocomotiv, 0);
return true;
2023-10-17 13:49:31 +04:00
}
2023-10-31 13:25:13 +04:00
public bool Insert(T electricLocomotiv, int position)
2023-10-17 13:49:31 +04:00
{
2023-10-31 13:25:13 +04:00
if (!(position >= 0 && position <= Count && _places.Count < _maxCount))
return false;
_places.Insert(position, electricLocomotiv);
return true;
2023-10-17 13:49:31 +04:00
}
public bool Remove(int position)
{
2023-10-31 13:25:13 +04:00
if (!(position >= 0 && position < Count))
2023-10-17 13:49:31 +04:00
return false;
2023-10-31 13:25:13 +04:00
_places.RemoveAt(position);
2023-10-17 13:49:31 +04:00
return true;
}
2023-10-31 13:25:13 +04:00
public T? this[int position]
2023-10-17 13:49:31 +04:00
{
2023-10-31 13:25:13 +04:00
get {
if (!(position >= 0 && position < Count))
return null;
return _places[position];
}
set {
if (!(position >= 0 && position < Count && _places.Count < _maxCount))
return;
_places.Insert(position, value);
return;
}
}
public IEnumerable<T?> GetElectricLocos(int? maxElectricLocos = null)
{
for (int i = 0; i < _places.Count; ++i)
{
yield return _places[i];
if (maxElectricLocos.HasValue && i == maxElectricLocos.Value)
{
yield break;
}
}
2023-10-17 13:49:31 +04:00
}
}