R6DS (version 1.1.0)

RQueue: The RQueue reference class

Description

The RQueue reference class implements the data structure queue.

Usage

RQueue

Arguments

Format

An object of class R6ClassGenerator of length 24.

Mutable Methods

The mutable methods changes the nodes of the instance.

enqueue(..., collapse=NULL)

The enqueue method creates nodes containing the values in ... and collapse, and push them into the deque from the right, which is equivalent to the push in RStack.

dequeue()

The dequeue method returns and removes the leftmost element in the deque. It returns NULL if the queue is empty.

Details

A queue is an ordered list of items following the First-In-First-Out (FIFO) principle. The enqueue method takes elements and enqueue them into the queue, while the dequeue method returns and removes the earliest enqueued element in the queue.

The elements in the queue are not necessarily to be of the same type, and they can even be of function type.

References

For the details about the queue data structure, see Queue at Wikipedia.

See Also

R6DS for the introduction of the reference class and some common methods

Examples

Run this code
# NOT RUN {
### create a new instance

# to create a new instance of the class
queue <- RQueue$new()

# the previous RQueue instance will be removed by running the following
# and the memory allocated for that one will be cleared,
# as now, the variable queue points to another instance of the class.
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()

# }

Run the code above in your browser using DataLab