Exemplo n.º 1
0
        public bool Contains(T data)
        {
            DoublyNode <T> current = head;

            while (current != null)
            {
                if (current.Data.Equals(data))
                {
                    return(true);
                }
                current = current.Next;
            }
            return(false);
        }
Exemplo n.º 2
0
        int count;           // количество элементов в списке

        // добавление элемента
        public void Add(T data)
        {
            DoublyNode <T> node = new DoublyNode <T>(data);

            if (head == null)
            {
                head = node;
            }
            else
            {
                tail.Next     = node;
                node.Previous = tail;
            }
            tail = node;
            count++;
        }
Exemplo n.º 3
0
        public void AddFirst(T data)
        {
            DoublyNode <T> node = new DoublyNode <T>(data);
            DoublyNode <T> temp = head;

            node.Next = temp;
            head      = node;
            if (count == 0)
            {
                tail = head;
            }
            else
            {
                temp.Previous = node;
            }
            count++;
        }
Exemplo n.º 4
0
        // удаление
        public bool Remove(T data)
        {
            DoublyNode <T> current = head;

            // поиск удаляемого узла
            while (current != null)
            {
                if (current.Data.Equals(data))
                {
                    break;
                }
                current = current.Next;
            }
            if (current != null)
            {
                // если узел не последний
                if (current.Next != null)
                {
                    current.Next.Previous = current.Previous;
                }
                else
                {
                    // если последний, переустанавливаем tail
                    tail = current.Previous;
                }

                // если узел не первый
                if (current.Previous != null)
                {
                    current.Previous.Next = current.Next;
                }
                else
                {
                    // если первый, переустанавливаем head
                    head = current.Next;
                }
                count--;
                return(true);
            }
            return(false);
        }
Exemplo n.º 5
0
        public void Reverse()
        {
            var temp = head;

            head          = tail;
            head.Next     = head.Previous;
            head.Previous = null;
            tail          = temp;
            tail.Previous = tail.Next;
            tail.Next     = null;
            var            t = head;
            DoublyNode <T> middle;

            for (int i = 0; i < this.Count; i++)
            {
                if (i != 0)
                {
                    t          = t.Next;
                    middle     = t.Next;
                    t.Next     = t.Previous;
                    t.Previous = middle;
                }
            }
        }
Exemplo n.º 6
0
 public void Clear()
 {
     head  = null;
     tail  = null;
     count = 0;
 }