lab_4
This commit is contained in:
parent
4dd8e12530
commit
7a57f00e6e
@ -85,8 +85,5 @@ namespace speed_Boat.Generics
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -36,8 +36,6 @@ namespace speed_Boat.Generics
|
||||
/// </summary>
|
||||
public bool Insert(T boat)
|
||||
{
|
||||
//TODO vstavka v nachalo nabora!!!
|
||||
|
||||
if(_places.Count == 0)
|
||||
{
|
||||
_places.Add(boat);
|
||||
@ -58,29 +56,6 @@ namespace speed_Boat.Generics
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
/*int currentI = -1;
|
||||
for(int i = 0; i < _maxCount; i++)//_maxCount ili _places.Count?
|
||||
{
|
||||
if (_places[i] != null)
|
||||
{
|
||||
currentI = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (currentI < 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
for(int i = currentI; i > 0; i--)
|
||||
{
|
||||
_places[i] = _places[i - 1];
|
||||
}
|
||||
|
||||
_places[0] = boat;
|
||||
return true;*/
|
||||
}
|
||||
/// <summary>
|
||||
/// Добавление объекта в набор на конкретную позицию.
|
||||
|
Loading…
Reference in New Issue
Block a user