Abstract data type for FIFO queues.
This module provides (double-ended) FIFO queues in an efficient manner.
All functions fail with reason badarg if arguments
are of wrong type, for example, queue arguments are not
queues, indexes are not integers, and list arguments are
not lists. Improper lists cause internal crashes.
An index out of range for a queue also causes
a failure with reason badarg.
Some functions, where noted, fail with reason empty
for an empty queue.
The data representing a queue as used by this module is to be regarded as opaque by other modules. Any code assuming knowledge of the format is running on thin ice.
All operations has an amortized O(1) running time, except
filter/2,
join/2,
len/1,
member/2,
split/2 that have O(n).
To minimize the size of a queue minimizing
the amount of garbage built by queue operations, the queues
do not contain explicit length information, and that is
why len/1 is O(n). If better performance for this
particular operation is essential, it is easy for
the caller to keep track of the length.
Queues are double-ended. The mental picture of a queue is a line of people (items) waiting for their turn. The queue front is the end with the item that has waited the longest. The queue rear is the end an item enters when it starts to wait. If instead using the mental picture of a list, the front is called head and the rear is called tail.
Entering at the front and exiting at the rear are reverse operations on the queue.
This module has three sets of interface functions: the "Original API", the "Extended API", and the "Okasaki API".
The "Original API" and the "Extended API" both use the mental picture of a waiting line of items. Both have reverse operations suffixed "_r".
The "Original API" item removal functions return compound terms with both the removed item and the resulting queue. The "Extended API" contains alternative functions that build less garbage and functions for just inspecting the queue ends. Also the "Okasaki API" functions build less garbage.
The "Okasaki API" is inspired by "Purely Functional Data Structures" by Chris Okasaki. It regards queues as lists. This API is by many regarded as strange and avoidable. For example, many reverse operations have lexically reversed names, some with more readable but perhaps less understandable aliases.
Original API
Functions
filter(Fun, Q1 :: queue(Item)) -> Q2 :: queue(Item)
Fun = fun((Item) -> boolean() | [Item])
Returns a queue that is the result of calling
on all items in
, in order from front to rear.
If returns true,
Item is copied to the result queue. If it returns false,
is not copied. If it returns a list,
the list elements are inserted instead of Item in the
result queue.
So, returning
[ is thereby
semantically equivalent to returning true, just
as returning [] is semantically equivalent to
returning false. But returning a list builds
more garbage than returning an atom.
from_list(L :: [Item]) -> queue(Item)
Returns a queue containing the items in in the
same order; the head item of the list becomes the front
item of the queue.
in(Item, Q1 :: queue(Item)) -> Q2 :: queue(Item)
Inserts at the rear of queue
.
Returns the resulting queue .
in_r(Item, Q1 :: queue(Item)) -> Q2 :: queue(Item)
Inserts at the front of queue
.
Returns the resulting queue .
is_empty(Q :: queue()) -> boolean()
Tests if is empty and returns true if
so, otherwise false.
is_queue(Term :: term()) -> boolean()
Tests if is a queue and returns true
if so, otherwise false.
join(Q1 :: queue(Item), Q2 :: queue(Item)) -> Q3 :: queue(Item)
Returns a queue that is the result of joining
and with
in front of .
len(Q :: queue()) -> integer() >= 0
Calculates and returns the length of queue .
member(Item, Q :: queue(Item)) -> boolean()
Returns true if matches some element
in , otherwise false.
new() -> queue()
Returns an empty queue.
out(Q1 :: queue(Item)) ->
{{value, Item}, Q2 :: queue(Item)} |
{empty, Q1 :: queue(Item)}
Removes the item at the front of queue .
Returns tuple {{value, ,
where is the item removed and
is the resulting queue. If
is empty, tuple
{empty, is returned.
out_r(Q1 :: queue(Item)) ->
{{value, Item}, Q2 :: queue(Item)} |
{empty, Q1 :: queue(Item)}
Removes the item at the rear of queue .
Returns tuple {{value, ,
where is the item removed and
is the new queue. If is
empty, tuple {empty, is returned.
reverse(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue containing the items of
in the reverse order.
split(N :: integer() >= 0, Q1 :: queue(Item)) ->
{Q2 :: queue(Item), Q3 :: queue(Item)}
Splits in two. The
front items are put in and the rest in
.
to_list(Q :: queue(Item)) -> [Item]
Returns a list of the items in the queue in the same order; the front item of the queue becomes the head of the list.
Extended API
Functions
drop(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue that is the result of removing
the front item from .
Fails with reason empty if is empty.
drop_r(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue that is the result of removing
the rear item from .
Fails with reason empty if is empty.
get(Q :: queue(Item)) -> Item
Returns at the front of queue
.
Fails with reason empty if is empty.
get_r(Q :: queue(Item)) -> Item
Returns at the rear of queue
.
Fails with reason empty if is empty.
peek(Q :: queue(Item)) -> empty | {value, Item}
Returns tuple {value, , where
is the front item of ,
or empty if is empty.
peek_r(Q :: queue(Item)) -> empty | {value, Item}
Returns tuple {value, , where
is the rear item of ,
or empty if is empty.
Okasaki API
Functions
cons(Item, Q1 :: queue(Item)) -> Q2 :: queue(Item)
Inserts at the head of queue
. Returns
the new queue .
daeh(Q :: queue(Item)) -> Item
Returns the tail item of queue .
Fails with reason empty if is empty.
head(Q :: queue(Item)) -> Item
Returns from the head of queue
.
Fails with reason empty if is empty.
init(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue that is the result of removing
the tail item from .
Fails with reason empty if is empty.
lait(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue that is the result of removing
the tail item from .
Fails with reason empty if is empty.
The name lait/1 is a misspelling - do not use it anymore.
last(Q :: queue(Item)) -> Item
Returns the tail item of queue .
Fails with reason empty if is empty.
liat(Q1 :: queue(Item)) -> Q2 :: queue(Item)
Returns a queue that is the result of removing
the tail item from .
Fails with reason empty if is empty.