man.bsd.lv manual page server

Manual Page Search Parameters

TREE(3) Library Functions Manual TREE(3)

SPLAY_PROTOTYPE, SPLAY_GENERATE, SPLAY_ENTRY, SPLAY_HEAD, SPLAY_INITIALIZER, SPLAY_ROOT, SPLAY_EMPTY, SPLAY_NEXT, SPLAY_MIN, SPLAY_MAX, SPLAY_FIND, SPLAY_LEFT, SPLAY_RIGHT, SPLAY_FOREACH, SPLAY_INIT, SPLAY_INSERT, SPLAY_REMOVE, RB_PROTOTYPE, RB_GENERATE, RB_ENTRY, RB_HEAD, RB_INITIALIZER, RB_ROOT, RB_EMPTY, RB_NEXT, RB_MIN, RB_MAX, RB_FIND, RB_LEFT, RB_RIGHT, RB_PARENT, RB_FOREACH, RB_FOREACH_FROM, RB_FOREACH_SAFE, RB_FOREACH_REVERSE, RB_FOREACH_REVERSE_FROM, RB_FOREACH_REVERSE_SAFE, RB_INIT, RB_INSERT, RB_REMOVEimplementations of splay and red-black trees

#include <sys/tree.h>

SPLAY_PROTOTYPE(NAME, TYPE, FIELD, CMP);

SPLAY_GENERATE(NAME, TYPE, FIELD, CMP);

SPLAY_ENTRY(TYPE);

SPLAY_HEAD(HEADNAME, TYPE);

struct TYPE *
SPLAY_INITIALIZER(SPLAY_HEAD *head);

SPLAY_ROOT(SPLAY_HEAD *head);

bool
SPLAY_EMPTY(SPLAY_HEAD *head);

struct TYPE *
SPLAY_NEXT(NAME, SPLAY_HEAD *head, struct TYPE *elm);

struct TYPE *
SPLAY_MIN(NAME, SPLAY_HEAD *head);

struct TYPE *
SPLAY_MAX(NAME, SPLAY_HEAD *head);

struct TYPE *
SPLAY_FIND(NAME, SPLAY_HEAD *head, struct TYPE *elm);

struct TYPE *
SPLAY_LEFT(struct TYPE *elm, SPLAY_ENTRY NAME);

struct TYPE *
SPLAY_RIGHT(struct TYPE *elm, SPLAY_ENTRY NAME);

SPLAY_FOREACH(VARNAME, NAME, SPLAY_HEAD *head);

void
SPLAY_INIT(SPLAY_HEAD *head);

struct TYPE *
SPLAY_INSERT(NAME, SPLAY_HEAD *head, struct TYPE *elm);

struct TYPE *
SPLAY_REMOVE(NAME, SPLAY_HEAD *head, struct TYPE *elm);


RB_PROTOTYPE(NAME, TYPE, FIELD, CMP);

RB_GENERATE(NAME, TYPE, FIELD, CMP);

RB_ENTRY(TYPE);

RB_HEAD(HEADNAME, TYPE);

RB_INITIALIZER(RB_HEAD *head);

struct TYPE *
RB_ROOT(RB_HEAD *head);

bool
RB_EMPTY(RB_HEAD *head);

struct TYPE *
RB_NEXT(NAME, RB_HEAD *head, struct TYPE *elm);

struct TYPE *
RB_MIN(NAME, RB_HEAD *head);

struct TYPE *
RB_MAX(NAME, RB_HEAD *head);

struct TYPE *
RB_FIND(NAME, RB_HEAD *head, struct TYPE *elm);

struct TYPE *
RB_LEFT(struct TYPE *elm, RB_ENTRY NAME);

struct TYPE *
RB_RIGHT(struct TYPE *elm, RB_ENTRY NAME);

struct TYPE *
RB_PARENT(struct TYPE *elm, RB_ENTRY NAME);

RB_FOREACH(VARNAME, NAME, RB_HEAD *head);

RB_FOREACH_FROM(VARNAME, NAME, POS_VARNAME);

RB_FOREACH_SAFE(VARNAME, NAME, RB_HEAD *head, TEMP_VARNAME);

RB_FOREACH_REVERSE(VARNAME, NAME, RB_HEAD *head);

RB_FOREACH_REVERSE_FROM(VARNAME, NAME, POS_VARNAME);

RB_FOREACH_REVERSE_SAFE(VARNAME, NAME, RB_HEAD *head, TEMP_VARNAME);

void
RB_INIT(RB_HEAD *head);

struct TYPE *
RB_INSERT(NAME, RB_HEAD *head, struct TYPE *elm);

struct TYPE *
RB_REMOVE(NAME, RB_HEAD *head, struct TYPE *elm);

These macros define data structures for different types of trees: splay trees and red-black trees.

In the macro definitions, TYPE is the name tag of a user defined structure that must contain a field of type SPLAY_ENTRY, or RB_ENTRY, named ENTRYNAME. The argument HEADNAME is the name tag of a user defined structure that must be declared using the macros () or RB_HEAD(). The argument NAME has to be a unique name prefix for every tree that is defined.

The function prototypes are declared with either SPLAY_PROTOTYPE or RB_PROTOTYPE. The function bodies are generated with either SPLAY_GENERATE or RB_GENERATE. See the examples below for further explanation of how these macros are used.

A splay tree is a self-organizing data structure. Every operation on the tree causes a splay to happen. The splay moves the requested node to the root of the tree and partly rebalances it.

This has the benefit that request locality causes faster lookups as the requested nodes move to the top of the tree. On the other hand, every lookup causes memory writes.

The Balance Theorem bounds the total access time for m operations and n inserts on an initially empty tree as O((m + n)lg n). The amortized cost for a sequence of m accesses to a splay tree is O(lg n).

A splay tree is headed by a structure defined by the () macro. A SPLAY_HEAD structure is declared as follows:

SPLAY_HEAD(HEADNAME, TYPE) head;

where HEADNAME is the name of the structure to be defined, and struct TYPE is the type of the elements to be inserted into the tree.

The () macro declares a structure that allows elements to be connected in the tree.

In order to use the functions that manipulate the tree structure, their prototypes need to be declared with the () macro, where NAME is a unique identifier for this particular tree. The TYPE argument is the type of the structure that is being managed by the tree. The FIELD argument is the name of the element defined by SPLAY_ENTRY().

The function bodies are generated with the () macro. It takes the same arguments as the SPLAY_PROTOTYPE() macro, but should be used only once.

Finally, the CMP argument is the name of a function used to compare trees noded with each other. The function takes two arguments of type struct TYPE *. If the first argument is smaller than the second, the function returns a value smaller than zero. If they are equal, the function returns zero. Otherwise, it should return a value greater than zero. The compare function defines the order of the tree elements.

The () macro initializes the tree referenced by head.

The splay tree can also be initialized statically by using the () macro like this:

SPLAY_HEAD(HEADNAME, TYPE) head = SPLAY_INITIALIZER(&head);

The () macro inserts the new element elm into the tree.

The () macro removes the element elm from the tree pointed by head.

The () macro can be used to find a particular element in the tree.

struct TYPE find, *res;
find.key = 30;
res = SPLAY_FIND(NAME, head, &find);

The (), (), (), and () macros can be used to traverse the tree:

for (np = SPLAY_MIN(NAME, &head); np != NULL; np = SPLAY_NEXT(NAME, &head, np))

Or, for simplicity, one can use the () macro:

SPLAY_FOREACH(np, NAME, head)

The () macro should be used to check whether a splay tree is empty.

A red-black tree is a binary search tree with the node color as an extra attribute. It fulfills a set of conditions:

  1. every search path from the root to a leaf consists of the same number of black nodes,
  2. each red node (except for the root) has a black parent,
  3. each leaf node is black.

Every operation on a red-black tree is bounded as O(lg n). The maximum height of a red-black tree is 2lg (n+1).

A red-black tree is headed by a structure defined by the () macro. A RB_HEAD structure is declared as follows:

RB_HEAD(HEADNAME, TYPE) head;

where HEADNAME is the name of the structure to be defined, and struct TYPE is the type of the elements to be inserted into the tree.

The () macro declares a structure that allows elements to be connected in the tree.

In order to use the functions that manipulate the tree structure, their prototypes need to be declared with the () macro, where NAME is a unique identifier for this particular tree. The TYPE argument is the type of the structure that is being managed by the tree. The FIELD argument is the name of the element defined by RB_ENTRY().

The function bodies are generated with the () macro. It takes the same arguments as the RB_PROTOTYPE() macro, but should be used only once.

Finally, the CMP argument is the name of a function used to compare trees noded with each other. The function takes two arguments of type struct TYPE *. If the first argument is smaller than the second, the function returns a value smaller than zero. If they are equal, the function returns zero. Otherwise, it should return a value greater than zero. The compare function defines the order of the tree elements.

The () macro initializes the tree referenced by head.

The redblack tree can also be initialized statically by using the () macro like this:

RB_HEAD(HEADNAME, TYPE) head = RB_INITIALIZER(&head);

The () macro inserts the new element elm into the tree.

The () macro removes the element elm from the tree pointed by head.

The () macro can be used to find a particular element in the tree.

struct TYPE find, *res;
find.key = 30;
res = RB_FIND(NAME, head, &find);

The (), (), (), and () macros can be used to traverse the tree:

for (np = RB_MIN(NAME, &head); np != NULL; np = RB_NEXT(NAME, &head, np))

Or, for simplicity, one can use the () or () macro:

RB_FOREACH(np, NAME, head)

The macros () and () traverse the tree referenced by head in a forward or reverse direction respectively, assigning each element in turn to np. However, unlike their unsafe counterparts, they permit both the removal of np as well as freeing it from within the loop safely without interfering with the traversal.

Both () and () may be used to continue an interrupted traversal in a forward or reverse direction respectively. The head pointer is not required. The pointer to the node from where to resume the traversal should be passed as their last argument, and will be overwritten to provide safe traversal.

The () macro should be used to check whether a red-black tree is empty.

Trying to free a tree in the following way is a common error:

SPLAY_FOREACH(var, NAME, head) {
	SPLAY_REMOVE(NAME, head, var);
	free(var);
}
free(head);

Since var is free'd, the () macro refers to a pointer that may have been reallocated already. Proper code needs a second variable.

for (var = SPLAY_MIN(NAME, head); var != NULL; var = nxt) {
	nxt = SPLAY_NEXT(NAME, head, var);
	SPLAY_REMOVE(NAME, head, var);
	free(var);
}

Both () and SPLAY_INSERT() return NULL if the element was inserted in the tree successfully, otherwise they return a pointer to the element with the colliding key.

Accordingly, () and SPLAY_REMOVE() return the pointer to the removed element, otherwise they return NULL to indicate an error.

The author of the tree macros is Niels Provos.

August 9, 2015 DragonFly-5.6.1