Ejemplo n.º 1
0
        /// <summary>
        /// Retira al elemento más antiguo de la cola
        /// </summary>
        /// <returns>El primer elemento ingresado</returns>
        /// <exception cref="Esception">Si la cola está vacia</exception>
        public T SacarCola()
        {
            if (this.EstaVacia)
            {
                throw new Exception("La cola está vacía");
            }

            return(_lista.Remover(0));
        }
Ejemplo n.º 2
0
        public T Pop()
        {
            if (this.Length <= 0)
            {
                throw new Exception("Stack underflow");
            }

            // return _lista.Remover(_lista.Longitud - 1);
            return(_lista.Remover(this.Length - 1));
        }