2022-11-07 21:03:30 +04:00
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Iterator;
|
|
|
|
|
|
|
|
|
|
public class SetPlanesGeneric<T extends Object> implements Iterable<T>
|
2022-11-05 21:26:27 +04:00
|
|
|
|
{
|
|
|
|
|
//массив объектов, которые храним
|
2022-11-07 21:03:30 +04:00
|
|
|
|
private ArrayList<T> _places;
|
|
|
|
|
|
|
|
|
|
//максимальное кол-во элементов в списке
|
|
|
|
|
private final int _maxCount;
|
2022-11-05 21:26:27 +04:00
|
|
|
|
|
|
|
|
|
//количество объектов в массиве
|
|
|
|
|
public int Count()
|
|
|
|
|
{
|
2022-11-07 21:03:30 +04:00
|
|
|
|
return _places.size();
|
2022-11-05 21:26:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//конструктор
|
|
|
|
|
public SetPlanesGeneric(int count)
|
|
|
|
|
{
|
2022-11-07 21:03:30 +04:00
|
|
|
|
_maxCount = count;
|
|
|
|
|
_places = new ArrayList<>();
|
2022-11-05 21:26:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//добавление объекта в набор
|
|
|
|
|
public int Insert(T plane)
|
|
|
|
|
{
|
|
|
|
|
return Insert(plane, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//добавление объекта в набор на конкретную позицию
|
|
|
|
|
public int Insert(T plane, int position)
|
|
|
|
|
{
|
2022-11-06 12:53:10 +04:00
|
|
|
|
//проверка на корректность значения индекса
|
2022-11-07 21:03:30 +04:00
|
|
|
|
if (position >= _maxCount|| position < 0)
|
2022-11-05 21:26:27 +04:00
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-07 21:03:30 +04:00
|
|
|
|
_places.add(plane);
|
2022-11-05 21:26:27 +04:00
|
|
|
|
|
|
|
|
|
return position;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//удаление объекта из набора с конкретной позиции
|
|
|
|
|
public T Remove(int position)
|
|
|
|
|
{
|
|
|
|
|
// проверка позиции
|
2022-11-07 21:03:30 +04:00
|
|
|
|
if (position >= _maxCount || position < 0)
|
2022-11-05 21:26:27 +04:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// удаление объекта из массива, присовив элементу массива значение null
|
2022-11-07 21:03:30 +04:00
|
|
|
|
T temp = _places.get(position);
|
|
|
|
|
_places.remove(position);
|
2022-11-05 21:26:27 +04:00
|
|
|
|
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//получение объекта из набора по позиции
|
|
|
|
|
public T Get(int position)
|
|
|
|
|
{
|
2022-11-07 21:03:30 +04:00
|
|
|
|
if (position >= _maxCount || position < 0)
|
2022-11-05 21:26:27 +04:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2022-11-07 21:03:30 +04:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
if (_places.get(position) == null)
|
2022-11-05 21:26:27 +04:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2022-11-07 21:03:30 +04:00
|
|
|
|
*/
|
2022-11-05 21:26:27 +04:00
|
|
|
|
|
2022-11-07 21:03:30 +04:00
|
|
|
|
return _places.get(position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Set(int position, T value)
|
|
|
|
|
{
|
|
|
|
|
if(position >= _maxCount || position < 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Insert(value, position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Iterator<T> iterator()
|
|
|
|
|
{
|
|
|
|
|
return _places.iterator();
|
2022-11-05 21:26:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|