/// <summary> /// Индексация списка /// </summary> public int this[int i] { set { if (_head != null) { if (i == 0) { p = _head; p._inf = value; } else { p = _head; for (int k = 0; k < i; k++) p = p._next; p._inf = value; } } else throw new ArgumentOutOfRangeException(); } get { if (_head != null) { if (i == 0) { p = _head; return p._inf; } else { p = _head; for (int k = 0; k < i; k++) p = p._next; return p._inf; } } else throw new ArgumentOutOfRangeException(); } }
public NodeList _next; //следующий узел #endregion Fields #region Constructors public NodeList(int inf, NodeList next) { this._inf = inf; this._next = next; }
public static int _count; // количество элементов в списке #endregion Fields #region Constructors /// <summary> /// Конструктор по умолчанию /// </summary> public MyList() { _head = null; _count = 0; }
/// <summary> /// Добавляет элемент в начало списка /// </summary> /// <param name="element"></param> public void Add(int element) { NodeList x = new NodeList(element, _head); _head = x; _count++; }