Estructuras de datos
PHP Manual

The SplStack class

Introducción

The SplStack class provides the main functionalities of a stack implemented using a doubly linked list.

Clases sinopsis

SplStack extends SplDoublyLinkedList implements Iterator , ArrayAccess , Countable {
/* Métodos */
__construct ( void )
void setIteratorMode ( int $mode )
/* Métodos heredados */
mixed SplDoublyLinkedList::key ( void )
void SplDoublyLinkedList::offsetSet ( mixed $index , mixed $newval )
mixed SplDoublyLinkedList::pop ( void )
mixed SplDoublyLinkedList::top ( void )
}

Table of Contents


Estructuras de datos
PHP Manual