RQueue {R6DS} | R Documentation |
The RQueue reference class
Description
The RQueue reference class implements the data structure queue.
Usage
RQueue
Format
An object of class R6ClassGenerator
of length 24.
Details
A queue is an ordered list of elements following the First-In-First-Out (FIFO) principle.
The enqueue
method takes elements and add them to the rear terminal position (right) of the queue,
while the dequeue
method returns and removes the element in the queue from the front terminal position (left).
The elements in the queue are not necessarily to be of the same type, and they can be any R objects.
References
For the details about the queue data structure, see Queue at Wikipedia.
Immutable Methods
The immutable method does not change the instance.
peekleft()
-
This method returns the leftmost (front) element in the queue. It returns
NULL
if the queue is empty.
Mutable Methods
The mutable methods change the instance.
enqueue(..., collapse=NULL)
-
The
enqueue
method enqueues the elements in...
andcollapse
into the queue (to the right or rear).Note that you can input multiple elements.
dequeue()
-
The
dequeue
method dequeues (returns and removes) one element (the leftmost or front) fron the queue. It returnsNULL
if the queue is empty.
Author(s)
Yukai Yang, yukai.yang@statistik.uu.se
See Also
R6DS for the introduction of the reference class and some common methods
Examples
### create a new instance
# to create a new instance of the class
queue <- RQueue$new()
# the previous RQueue instance will be removed if you run
queue <- RQueue$new(0, 1, 2, collapse=list(3, 4))
# the following sentence is equivalent to the above
queue <- RQueue$new(0, 1, 2, 3, 4)
# where the numbers 0, 1, 2, 3, 4 are enqueued into the queue
### enqueue elements
# it can be one single element
queue$enqueue(5)
# it can be several elements separated by commas
# note the whole list will be one element of the queue
# because it is not passed through the collapse argument
queue$enqueue(list(a=10,b=20), "Hello world!")
# the collapse argument takes a list whose elements will be collapsed
# but the elements' names will not be saved
queue$enqueue(collapse = list(x=100,y=200))
# they can be used together
queue$enqueue("hurrah", collapse = list("RQueue",300))
### dequeue an element
# dequeue only one element at a time
val <- queue$dequeue()
# then we keep dequeuing!
while(!is.null(val)) val <- queue$dequeue()