Manual Pages for UNIX Darwin command on man tfind
MyWebUniversity

Manual Pages for UNIX Darwin command on man tfind

TSEARCH(3) BSD Library Functions Manual TSEARCH(3)

NAME

ttsseeaarrcchh, ttffiinndd, ttddeelleettee, ttwwaallkk - manipulate binary search trees

SYNOPSIS

##iinncclluuddee <>

void * ttddeelleettee(const void * restrict key, void ** restrict rootp, int (*compar) (const void *, const void *)); void * ttffiinndd(const void *key, void * const *rootp, int (*compar) (const void *, const void *)); void * ttsseeaarrcchh(const void *key, void **rootp, int (*compar) (const void *, const void *)); void ttwwaallkk(const void *root, void (*compar) (const void *, VISIT, int));

DESCRIPTION

The ttddeelleettee(), ttffiinndd(), ttsseeaarrcchh(), and ttwwaallkk() functions manage binary

search trees based on algorithms T and D from Knuth (6.2.2). The compar-

ison function passed in by the user has the same style of return values as strcmp(3). The ttffiinndd() function searches for the datum matched by the argument key in the binary tree rooted at rootp, returning a pointer to the datum if it is found and NULL if it is not. The ttsseeaarrcchh() function is identical to ttffiinndd() except that if no match is found, key is inserted into the tree and a pointer to it is returned. If rootp points to a NULL value a new binary search tree is created. The ttddeelleettee() function deletes a node from the specified binary search tree and returns a pointer to the parent of the node to be deleted. It takes the same arguments as ttffiinndd() and ttsseeaarrcchh(). If the node to be deleted is the root of the binary search tree, rootp will be adjusted. The ttwwaallkk() function walks the binary search tree rooted in root and calls the function action on each node. The action function is called with three arguments: a pointer to the current node, a value from the

enum ttyyppeeddeeff eennuumm {{ pprreeoorrddeerr,, ppoossttoorrddeerr,, eennddoorrddeerr,, lleeaaff }} VVIISSIITT;; specify-

ing the traversal type, and a node level (where level zero is the root of the tree).

SEE ALSO

bsearch(3), hsearch(3), lsearch(3)

RETURN VALUES

The ttsseeaarrcchh() function returns NULL if allocation of a new node fails (usually due to a lack of free memory). The ttffiinndd(), ttsseeaarrcchh(), and ttddeelleettee() functions return NULL if rootp is NULL or the datum cannot be found. The ttwwaallkk() function returns no value. BSD June 15, 1997 BSD




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™