ISEbd-21 Melnikov I.O. Lab work 03 Base #5
@ -27,6 +27,18 @@
|
||||
public bool Insert(T locomotive)
|
||||
{
|
||||
// TODO проверка на наличие свободных мест
|
||||
|
||||
T testLocomotive = _places[0];
|
||||
for (int i = 0; i < Count; i++)
|
||||
{
|
||||
if (_places[i] == null)
|
||||
{
|
||||
testLocomotive = _places[i];
|
||||
}
|
||||
}
|
||||
if (testLocomotive != null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
for (int i = Count - 2; i >= 0; i--)
|
||||
{
|
||||
_places[i + 1] = _places[i];
|
||||
|
Loading…
Reference in New Issue
Block a user
Правильнее было вызвать Insert(T obj, 0);