SplStack::setIteratorMode
SplQueue::__construct
Datastructures
PHP Manual
کلاس SplQueue
Introduction
کلاس SplQueue عملکرد اصلی پیادهسازی صف را با استفاده لیست دو پیوندی پیاده میکند.
Class synopsis
SplQueue
extends
SplDoublyLinkedList
implements
Iterator
,
ArrayAccess
,
Countable
{
/* Methods */
__construct
(
void
)
mixed
dequeue
(
void
)
void
enqueue
(
mixed
$value
)
void
setIteratorMode
(
int
$mode
)
/* Inherited methods */
mixed
SplDoublyLinkedList::bottom
(
void
)
int
SplDoublyLinkedList::count
(
void
)
mixed
SplDoublyLinkedList::current
(
void
)
int
SplDoublyLinkedList::getIteratorMode
(
void
)
bool
SplDoublyLinkedList::isEmpty
(
void
)
mixed
SplDoublyLinkedList::key
(
void
)
void
SplDoublyLinkedList::next
(
void
)
bool
SplDoublyLinkedList::offsetExists
(
mixed
$index
)
mixed
SplDoublyLinkedList::offsetGet
(
mixed
$index
)
void
SplDoublyLinkedList::offsetSet
(
mixed
$index
,
mixed
$newval
)
void
SplDoublyLinkedList::offsetUnset
(
mixed
$index
)
mixed
SplDoublyLinkedList::pop
(
void
)
void
SplDoublyLinkedList::prev
(
void
)
void
SplDoublyLinkedList::push
(
mixed
$value
)
void
SplDoublyLinkedList::rewind
(
void
)
void
SplDoublyLinkedList::setIteratorMode
(
int
$mode
)
mixed
SplDoublyLinkedList::shift
(
void
)
mixed
SplDoublyLinkedList::top
(
void
)
void
SplDoublyLinkedList::unshift
(
mixed
$value
)
bool
SplDoublyLinkedList::valid
(
void
)
}
Table of Contents
SplQueue::__construct
— ساخت صف جدید پیاده شده با استفاده از لیست دوپیوندی
SplQueue::dequeue
— خارج کردن گره از صف
SplQueue::enqueue
— اضافه کردن جز به صف
SplQueue::setIteratorMode
— تعیین حالت تکرار
SplStack::setIteratorMode
SplQueue::__construct
Datastructures
PHP Manual