]> git.ipfire.org Git - thirdparty/glibc.git/blame - manual/search.texi
Update contributions in the manual
[thirdparty/glibc.git] / manual / search.texi
CommitLineData
40a55d20 1@node Searching and Sorting, Pattern Matching, Message Translation, Top
7a68c94a 2@c %MENU% General searching and sorting functions
f65fd747 3@chapter Searching and Sorting
28f540f4
RM
4
5This chapter describes functions for searching and sorting arrays of
6arbitrary objects. You pass the appropriate comparison function to be
7applied as an argument, along with the size of the objects in the array
8and the total number of elements.
9
10@menu
11* Comparison Functions:: Defining how to compare two objects.
12 Since the sort and search facilities
13 are general, you have to specify the
f65fd747 14 ordering.
28f540f4
RM
15* Array Search Function:: The @code{bsearch} function.
16* Array Sort Function:: The @code{qsort} function.
17* Search/Sort Example:: An example program.
2604afb1
UD
18* Hash Search Function:: The @code{hsearch} function.
19* Tree Search Function:: The @code{tsearch} function.
28f540f4
RM
20@end menu
21
2604afb1 22@node Comparison Functions
28f540f4
RM
23@section Defining the Comparison Function
24@cindex Comparison Function
25
26In order to use the sorted array library functions, you have to describe
27how to compare the elements of the array.
28
29To do this, you supply a comparison function to compare two elements of
30the array. The library will call this function, passing as arguments
31pointers to two array elements to be compared. Your comparison function
32should return a value the way @code{strcmp} (@pxref{String/Array
33Comparison}) does: negative if the first argument is ``less'' than the
34second, zero if they are ``equal'', and positive if the first argument
35is ``greater''.
36
37Here is an example of a comparison function which works with an array of
38numbers of type @code{double}:
39
40@smallexample
41int
68ef28ed 42compare_doubles (const void *a, const void *b)
28f540f4 43@{
68ef28ed
UD
44 const double *da = (const double *) a;
45 const double *db = (const double *) b;
46
47 return (*da > *db) - (*da < *db);
28f540f4
RM
48@}
49@end smallexample
50
51The header file @file{stdlib.h} defines a name for the data type of
52comparison functions. This type is a GNU extension.
53
54@comment stdlib.h
55@comment GNU
56@tindex comparison_fn_t
57@smallexample
58int comparison_fn_t (const void *, const void *);
59@end smallexample
60
2604afb1 61@node Array Search Function
28f540f4
RM
62@section Array Search Function
63@cindex search function (for arrays)
64@cindex binary search function (for arrays)
65@cindex array search function
66
2604afb1 67Generally searching for a specific element in an array means that
1f77f049 68potentially all elements must be checked. @Theglibc{} contains
2604afb1
UD
69functions to perform linear search. The prototypes for the following
70two functions can be found in @file{search.h}.
71
8ded91fb 72@deftypefun {void *} lfind (const void *@var{key}, const void *@var{base}, size_t *@var{nmemb}, size_t @var{size}, comparison_fn_t @var{compar})
d08a7e4c 73@standards{SVID, search.h}
433c45a2 74@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
2604afb1
UD
75The @code{lfind} function searches in the array with @code{*@var{nmemb}}
76elements of @var{size} bytes pointed to by @var{base} for an element
77which matches the one pointed to by @var{key}. The function pointed to
8ed0d867 78by @var{compar} is used to decide whether two elements match.
2604afb1
UD
79
80The return value is a pointer to the matching element in the array
81starting at @var{base} if it is found. If no matching element is
82available @code{NULL} is returned.
83
84The mean runtime of this function is @code{*@var{nmemb}}/2. This
11bf311e 85function should only be used if elements often get added to or deleted from
2604afb1
UD
86the array in which case it might not be useful to sort the array before
87searching.
88@end deftypefun
89
2604afb1 90@deftypefun {void *} lsearch (const void *@var{key}, void *@var{base}, size_t *@var{nmemb}, size_t @var{size}, comparison_fn_t @var{compar})
d08a7e4c 91@standards{SVID, search.h}
433c45a2
AO
92@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
93@c A signal handler that interrupted an insertion and performed an
94@c insertion itself would leave the array in a corrupt state (e.g. one
95@c new element initialized twice, with parts of both initializations
96@c prevailing, and another uninitialized element), but this is just a
97@c special case of races on user-controlled objects, that have to be
98@c avoided by users.
99
100@c In case of cancellation, we know the array won't be left in a corrupt
101@c state; the new element is initialized before the element count is
102@c incremented, and the compiler can't reorder these operations because
103@c it can't know that they don't alias. So, we'll either cancel after
104@c the increment and the initialization are both complete, or the
105@c increment won't have taken place, and so how far the initialization
106@c got doesn't matter.
2604afb1
UD
107The @code{lsearch} function is similar to the @code{lfind} function. It
108searches the given array for an element and returns it if found. The
109difference is that if no matching element is found the @code{lsearch}
110function adds the object pointed to by @var{key} (with a size of
111@var{size} bytes) at the end of the array and it increments the value of
112@code{*@var{nmemb}} to reflect this addition.
113
114This means for the caller that if it is not sure that the array contains
115the element one is searching for the memory allocated for the array
116starting at @var{base} must have room for at least @var{size} more
117bytes. If one is sure the element is in the array it is better to use
118@code{lfind} so having more room in the array is always necessary when
119calling @code{lsearch}.
120@end deftypefun
121
28f540f4
RM
122To search a sorted array for an element matching the key, use the
123@code{bsearch} function. The prototype for this function is in
124the header file @file{stdlib.h}.
125@pindex stdlib.h
126
28f540f4 127@deftypefun {void *} bsearch (const void *@var{key}, const void *@var{array}, size_t @var{count}, size_t @var{size}, comparison_fn_t @var{compare})
d08a7e4c 128@standards{ISO, stdlib.h}
433c45a2 129@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
28f540f4
RM
130The @code{bsearch} function searches the sorted array @var{array} for an object
131that is equivalent to @var{key}. The array contains @var{count} elements,
f65fd747 132each of which is of size @var{size} bytes.
28f540f4
RM
133
134The @var{compare} function is used to perform the comparison. This
135function is called with two pointer arguments and should return an
136integer less than, equal to, or greater than zero corresponding to
137whether its first argument is considered less than, equal to, or greater
138than its second argument. The elements of the @var{array} must already
139be sorted in ascending order according to this comparison function.
140
141The return value is a pointer to the matching array element, or a null
142pointer if no match is found. If the array contains more than one element
143that matches, the one that is returned is unspecified.
144
145This function derives its name from the fact that it is implemented
146using the binary search algorithm.
147@end deftypefun
148
2604afb1 149@node Array Sort Function
28f540f4
RM
150@section Array Sort Function
151@cindex sort function (for arrays)
152@cindex quick sort function (for arrays)
153@cindex array sort function
154
155To sort an array using an arbitrary comparison function, use the
156@code{qsort} function. The prototype for this function is in
157@file{stdlib.h}.
158@pindex stdlib.h
159
28f540f4 160@deftypefun void qsort (void *@var{array}, size_t @var{count}, size_t @var{size}, comparison_fn_t @var{compare})
d08a7e4c 161@standards{ISO, stdlib.h}
433c45a2 162@safety{@prelim{}@mtsafe{}@assafe{}@acunsafe{@acucorrupt{}}}
98fe149e
AK
163The @code{qsort} function sorts the array @var{array}. The array
164contains @var{count} elements, each of which is of size @var{size}.
28f540f4
RM
165
166The @var{compare} function is used to perform the comparison on the
167array elements. This function is called with two pointer arguments and
168should return an integer less than, equal to, or greater than zero
169corresponding to whether its first argument is considered less than,
170equal to, or greater than its second argument.
171
172@cindex stable sorting
173@strong{Warning:} If two objects compare as equal, their order after
174sorting is unpredictable. That is to say, the sorting is not stable.
175This can make a difference when the comparison considers only part of
176the elements. Two elements with the same sort key may differ in other
177respects.
178
98fe149e
AK
179Although the object addresses passed to the comparison function lie
180within the array, they need not correspond with the original locations
181of those objects because the sorting algorithm may swap around objects
182in the array before making some comparisons. The only way to perform
183a stable sort with @code{qsort} is to first augment the objects with a
184monotonic counter of some kind.
28f540f4
RM
185
186Here is a simple example of sorting an array of doubles in numerical
187order, using the comparison function defined above (@pxref{Comparison
188Functions}):
189
190@smallexample
191@{
192 double *array;
193 int size;
194 @dots{}
195 qsort (array, size, sizeof (double), compare_doubles);
196@}
197@end smallexample
198
199The @code{qsort} function derives its name from the fact that it was
200originally implemented using the ``quick sort'' algorithm.
21ad6b26
AJ
201
202The implementation of @code{qsort} in this library might not be an
203in-place sort and might thereby use an extra amount of memory to store
204the array.
28f540f4
RM
205@end deftypefun
206
2604afb1 207@node Search/Sort Example
28f540f4
RM
208@section Searching and Sorting Example
209
210Here is an example showing the use of @code{qsort} and @code{bsearch}
211with an array of structures. The objects in the array are sorted
212by comparing their @code{name} fields with the @code{strcmp} function.
213Then, we can look up individual objects based on their names.
214
215@comment This example is dedicated to the memory of Jim Henson. RIP.
216@smallexample
217@include search.c.texi
218@end smallexample
219
220@cindex Kermit the frog
221The output from this program looks like:
222
223@smallexample
224Kermit, the frog
225Piggy, the pig
226Gonzo, the whatever
227Fozzie, the bear
228Sam, the eagle
229Robin, the frog
230Animal, the animal
231Camilla, the chicken
232Sweetums, the monster
233Dr. Strangepork, the pig
234Link Hogthrob, the pig
235Zoot, the human
236Dr. Bunsen Honeydew, the human
237Beaker, the human
238Swedish Chef, the human
239
240Animal, the animal
241Beaker, the human
242Camilla, the chicken
243Dr. Bunsen Honeydew, the human
244Dr. Strangepork, the pig
245Fozzie, the bear
246Gonzo, the whatever
247Kermit, the frog
248Link Hogthrob, the pig
249Piggy, the pig
250Robin, the frog
251Sam, the eagle
252Swedish Chef, the human
253Sweetums, the monster
254Zoot, the human
255
256Kermit, the frog
257Gonzo, the whatever
258Couldn't find Janice.
259@end smallexample
2604afb1
UD
260
261
262@node Hash Search Function
263@section The @code{hsearch} function.
264
11bf311e 265The functions mentioned so far in this chapter are for searching in a sorted
2604afb1
UD
266or unsorted array. There are other methods to organize information
267which later should be searched. The costs of insert, delete and search
268differ. One possible implementation is using hashing tables.
11bf311e 269The following functions are declared in the header file @file{search.h}.
2604afb1 270
2604afb1 271@deftypefun int hcreate (size_t @var{nel})
d08a7e4c 272@standards{SVID, search.h}
433c45a2
AO
273@safety{@prelim{}@mtunsafe{@mtasurace{:hsearch}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
274@c hcreate @mtasurace:hsearch @ascuheap @acucorrupt @acsmem
275@c hcreate_r dup @mtsrace:htab @ascuheap @acucorrupt @acsmem
2604afb1
UD
276The @code{hcreate} function creates a hashing table which can contain at
277least @var{nel} elements. There is no possibility to grow this table so
11bf311e
UD
278it is necessary to choose the value for @var{nel} wisely. The method
279used to implement this function might make it necessary to make the
2604afb1 280number of elements in the hashing table larger than the expected maximal
11bf311e 281number of elements. Hashing tables usually work inefficiently if they are
2604afb1
UD
282filled 80% or more. The constant access time guaranteed by hashing can
283only be achieved if few collisions exist. See Knuth's ``The Art of
284Computer Programming, Part 3: Searching and Sorting'' for more
285information.
286
287The weakest aspect of this function is that there can be at most one
f2ea0f5b 288hashing table used through the whole program. The table is allocated
1f77f049 289in local memory out of control of the programmer. As an extension @theglibc{}
9dcc8f11 290provides an additional set of functions with a reentrant
8ed0d867 291interface which provides a similar interface but which allows keeping
49c091e5 292arbitrarily many hashing tables.
2604afb1
UD
293
294It is possible to use more than one hashing table in the program run if
295the former table is first destroyed by a call to @code{hdestroy}.
296
8ed0d867 297The function returns a non-zero value if successful. If it returns zero,
2604afb1 298something went wrong. This could either mean there is already a hashing
8ed0d867 299table in use or the program ran out of memory.
2604afb1
UD
300@end deftypefun
301
2604afb1 302@deftypefun void hdestroy (void)
d08a7e4c 303@standards{SVID, search.h}
433c45a2
AO
304@safety{@prelim{}@mtunsafe{@mtasurace{:hsearch}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
305@c hdestroy @mtasurace:hsearch @ascuheap @acucorrupt @acsmem
306@c hdestroy_r dup @mtsrace:htab @ascuheap @acucorrupt @acsmem
2604afb1
UD
307The @code{hdestroy} function can be used to free all the resources
308allocated in a previous call of @code{hcreate}. After a call to this
309function it is again possible to call @code{hcreate} and allocate a new
310table with possibly different size.
311
312It is important to remember that the elements contained in the hashing
313table at the time @code{hdestroy} is called are @emph{not} freed by this
314function. It is the responsibility of the program code to free those
f2ea0f5b 315strings (if necessary at all). Freeing all the element memory is not
2604afb1
UD
316possible without extra, separately kept information since there is no
317function to iterate through all available elements in the hashing table.
318If it is really necessary to free a table and all elements the
319programmer has to keep a list of all table elements and before calling
320@code{hdestroy} s/he has to free all element's data using this list.
f2ea0f5b 321This is a very unpleasant mechanism and it also shows that this kind of
8ed0d867 322hashing table is mainly meant for tables which are created once and
2604afb1
UD
323used until the end of the program run.
324@end deftypefun
325
326Entries of the hashing table and keys for the search are defined using
327this type:
328
329@deftp {Data type} {struct ENTRY}
330Both elements of this structure are pointers to zero-terminated strings.
331This is a limiting restriction of the functionality of the
332@code{hsearch} functions. They can only be used for data sets which use
333the NUL character always and solely to terminate the records. It is not
334possible to handle general binary data.
335
336@table @code
337@item char *key
338Pointer to a zero-terminated string of characters describing the key for
339the search or the element in the hashing table.
340@item char *data
341Pointer to a zero-terminated string of characters describing the data.
342If the functions will be called only for searching an existing entry
343this element might stay undefined since it is not used.
344@end table
345@end deftp
346
2604afb1 347@deftypefun {ENTRY *} hsearch (ENTRY @var{item}, ACTION @var{action})
d08a7e4c 348@standards{SVID, search.h}
433c45a2
AO
349@safety{@prelim{}@mtunsafe{@mtasurace{:hsearch}}@asunsafe{}@acunsafe{@acucorrupt{/action==ENTER}}}
350@c hsearch @mtasurace:hsearch @acucorrupt/action==ENTER
351@c hsearch_r dup @mtsrace:htab @acucorrupt/action==ENTER
2604afb1 352To search in a hashing table created using @code{hcreate} the
8ed0d867
RJ
353@code{hsearch} function must be used. This function can perform a simple
354search for an element (if @var{action} has the value @code{FIND}) or it can
afdef815
UD
355alternatively insert the key element into the hashing table. Entries
356are never replaced.
2604afb1
UD
357
358The key is denoted by a pointer to an object of type @code{ENTRY}. For
359locating the corresponding position in the hashing table only the
360@code{key} element of the structure is used.
361
8ed0d867 362If an entry with a matching key is found the @var{action} parameter is
afdef815
UD
363irrelevant. The found entry is returned. If no matching entry is found
364and the @var{action} parameter has the value @code{FIND} the function
365returns a @code{NULL} pointer. If no entry is found and the
366@var{action} parameter has the value @code{ENTER} a new entry is added
367to the hashing table which is initialized with the parameter @var{item}.
368A pointer to the newly added entry is returned.
2604afb1
UD
369@end deftypefun
370
8ed0d867 371As mentioned before, the hashing table used by the functions described so
2604afb1
UD
372far is global and there can be at any time at most one hashing table in
373the program. A solution is to use the following functions which are a
374GNU extension. All have in common that they operate on a hashing table
375which is described by the content of an object of the type @code{struct
376hsearch_data}. This type should be treated as opaque, none of its
377members should be changed directly.
378
2604afb1 379@deftypefun int hcreate_r (size_t @var{nel}, struct hsearch_data *@var{htab})
d08a7e4c 380@standards{GNU, search.h}
433c45a2
AO
381@safety{@prelim{}@mtsafe{@mtsrace{:htab}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
382@c Unlike the lsearch array, the htab is (at least in part) opaque, so
383@c let's make it absolutely clear that ensuring exclusive access is a
384@c caller responsibility.
385
386@c Cancellation is unlikely to leave the htab in a corrupt state: the
387@c last field to be initialized is the one that tells whether the entire
388@c data structure was initialized, and there's a function call (calloc)
389@c in between that will often ensure all other fields are written before
390@c the table. However, should this call be inlined (say with LTO), this
391@c assumption may not hold. The calloc call doesn't cross our library
392@c interface barrier, so let's consider this could happen and mark this
393@c with @acucorrupt. It's no safety loss, since we already have
394@c @ascuheap anyway...
395
396@c hcreate_r @mtsrace:htab @ascuheap @acucorrupt @acsmem
397@c isprime ok
398@c calloc dup @ascuheap @acsmem
f2ea0f5b 399The @code{hcreate_r} function initializes the object pointed to by
2604afb1
UD
400@var{htab} to contain a hashing table with at least @var{nel} elements.
401So this function is equivalent to the @code{hcreate} function except
402that the initialized data structure is controlled by the user.
403
0d1ef15f
UD
404This allows having more than one hashing table at one time. The memory
405necessary for the @code{struct hsearch_data} object can be allocated
406dynamically. It must be initialized with zero before calling this
407function.
2604afb1 408
11bf311e
UD
409The return value is non-zero if the operation was successful. If the
410return value is zero, something went wrong, which probably means the
8ed0d867 411program ran out of memory.
2604afb1
UD
412@end deftypefun
413
2604afb1 414@deftypefun void hdestroy_r (struct hsearch_data *@var{htab})
d08a7e4c 415@standards{GNU, search.h}
433c45a2
AO
416@safety{@prelim{}@mtsafe{@mtsrace{:htab}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
417@c The table is released while the table pointer still points to it.
418@c Async cancellation is thus unsafe, but it already was because we call
419@c free(). Using the table in a handler while it's being released would
420@c also be dangerous, but calling free() already makes it unsafe, and
421@c the requirement on the caller to ensure exclusive access already
422@c guarantees this doesn't happen, so we don't get @asucorrupt.
423
424@c hdestroy_r @mtsrace:htab @ascuheap @acucorrupt @acsmem
425@c free dup @ascuheap @acsmem
2604afb1
UD
426The @code{hdestroy_r} function frees all resources allocated by the
427@code{hcreate_r} function for this very same object @var{htab}. As for
8ed0d867 428@code{hdestroy} it is the program's responsibility to free the strings
2604afb1
UD
429for the elements of the table.
430@end deftypefun
431
2604afb1 432@deftypefun int hsearch_r (ENTRY @var{item}, ACTION @var{action}, ENTRY **@var{retval}, struct hsearch_data *@var{htab})
d08a7e4c 433@standards{GNU, search.h}
433c45a2
AO
434@safety{@prelim{}@mtsafe{@mtsrace{:htab}}@assafe{}@acunsafe{@acucorrupt{/action==ENTER}}}
435@c Callers have to ensure mutual exclusion; insertion, if cancelled,
436@c leaves the table in a corrupt state.
437
438@c hsearch_r @mtsrace:htab @acucorrupt/action==ENTER
439@c strlen dup ok
440@c strcmp dup ok
2604afb1
UD
441The @code{hsearch_r} function is equivalent to @code{hsearch}. The
442meaning of the first two arguments is identical. But instead of
f2ea0f5b 443operating on a single global hashing table the function works on the
2604afb1
UD
444table described by the object pointed to by @var{htab} (which is
445initialized by a call to @code{hcreate_r}).
446
447Another difference to @code{hcreate} is that the pointer to the found
8ed0d867
RJ
448entry in the table is not the return value of the function. It is
449returned by storing it in a pointer variable pointed to by the
2604afb1
UD
450@var{retval} parameter. The return value of the function is an integer
451value indicating success if it is non-zero and failure if it is zero.
49c091e5 452In the latter case the global variable @var{errno} signals the reason for
2604afb1
UD
453the failure.
454
455@table @code
456@item ENOMEM
9dcc8f11 457The table is filled and @code{hsearch_r} was called with a so far
2604afb1
UD
458unknown key and @var{action} set to @code{ENTER}.
459@item ESRCH
460The @var{action} parameter is @code{FIND} and no corresponding element
461is found in the table.
462@end table
463@end deftypefun
464
465
466@node Tree Search Function
467@section The @code{tsearch} function.
468
469Another common form to organize data for efficient search is to use
470trees. The @code{tsearch} function family provides a nice interface to
471functions to organize possibly large amounts of data by providing a mean
472access time proportional to the logarithm of the number of elements.
1f77f049 473@Theglibc{} implementation even guarantees that this bound is
2604afb1
UD
474never exceeded even for input data which cause problems for simple
475binary tree implementations.
476
f2ea0f5b 477The functions described in the chapter are all described in the @w{System
2604afb1
UD
478V} and X/Open specifications and are therefore quite portable.
479
480In contrast to the @code{hsearch} functions the @code{tsearch} functions
481can be used with arbitrary data and not only zero-terminated strings.
482
483The @code{tsearch} functions have the advantage that no function to
484initialize data structures is necessary. A simple pointer of type
485@code{void *} initialized to @code{NULL} is a valid tree and can be
ce460d04
RM
486extended or searched. The prototypes for these functions can be found
487in the header file @file{search.h}.
2604afb1 488
2604afb1 489@deftypefun {void *} tsearch (const void *@var{key}, void **@var{rootp}, comparison_fn_t @var{compar})
d08a7e4c 490@standards{SVID, search.h}
433c45a2
AO
491@safety{@prelim{}@mtsafe{@mtsrace{:rootp}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
492@c The tree is not modified in a thread-safe manner, and rotations may
493@c leave the tree in an inconsistent state that could be observed in an
494@c asynchronous signal handler (except for the caller-synchronization
495@c requirement) or after asynchronous cancellation of the thread
496@c performing the rotation or the insertion.
2604afb1
UD
497The @code{tsearch} function searches in the tree pointed to by
498@code{*@var{rootp}} for an element matching @var{key}. The function
f2ea0f5b 499pointed to by @var{compar} is used to determine whether two elements
8b7fb588 500match. @xref{Comparison Functions}, for a specification of the functions
2604afb1
UD
501which can be used for the @var{compar} parameter.
502
503If the tree does not contain a matching entry the @var{key} value will
504be added to the tree. @code{tsearch} does not make a copy of the object
505pointed to by @var{key} (how could it since the size is unknown).
506Instead it adds a reference to this object which means the object must
507be available as long as the tree data structure is used.
508
509The tree is represented by a pointer to a pointer since it is sometimes
510necessary to change the root node of the tree. So it must not be
511assumed that the variable pointed to by @var{rootp} has the same value
512after the call. This also shows that it is not safe to call the
513@code{tsearch} function more than once at the same time using the same
514tree. It is no problem to run it more than once at a time on different
515trees.
516
517The return value is a pointer to the matching element in the tree. If a
518new element was created the pointer points to the new data (which is in
519fact @var{key}). If an entry had to be created and the program ran out
520of space @code{NULL} is returned.
521@end deftypefun
522
2604afb1 523@deftypefun {void *} tfind (const void *@var{key}, void *const *@var{rootp}, comparison_fn_t @var{compar})
d08a7e4c 524@standards{SVID, search.h}
433c45a2 525@safety{@prelim{}@mtsafe{@mtsrace{:rootp}}@assafe{}@acsafe{}}
2604afb1
UD
526The @code{tfind} function is similar to the @code{tsearch} function. It
527locates an element matching the one pointed to by @var{key} and returns
528a pointer to this element. But if no matching element is available no
529new element is entered (note that the @var{rootp} parameter points to a
530constant pointer). Instead the function returns @code{NULL}.
531@end deftypefun
532
8ed0d867 533Another advantage of the @code{tsearch} functions in contrast to the
2604afb1
UD
534@code{hsearch} functions is that there is an easy way to remove
535elements.
536
2604afb1 537@deftypefun {void *} tdelete (const void *@var{key}, void **@var{rootp}, comparison_fn_t @var{compar})
d08a7e4c 538@standards{SVID, search.h}
433c45a2 539@safety{@prelim{}@mtsafe{@mtsrace{:rootp}}@asunsafe{@ascuheap{}}@acunsafe{@acucorrupt{} @acsmem{}}}
2604afb1
UD
540To remove a specific element matching @var{key} from the tree
541@code{tdelete} can be used. It locates the matching element using the
542same method as @code{tfind}. The corresponding element is then removed
2864e767
UD
543and a pointer to the parent of the deleted node is returned by the
544function. If there is no matching entry in the tree nothing can be
545deleted and the function returns @code{NULL}. If the root of the tree
546is deleted @code{tdelete} returns some unspecified value not equal to
547@code{NULL}.
2604afb1
UD
548@end deftypefun
549
2604afb1 550@deftypefun void tdestroy (void *@var{vroot}, __free_fn_t @var{freefct})
d08a7e4c 551@standards{GNU, search.h}
433c45a2 552@safety{@prelim{}@mtsafe{}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
2604afb1
UD
553If the complete search tree has to be removed one can use
554@code{tdestroy}. It frees all resources allocated by the @code{tsearch}
8ed0d867 555functions to generate the tree pointed to by @var{vroot}.
2604afb1
UD
556
557For the data in each tree node the function @var{freefct} is called.
558The pointer to the data is passed as the argument to the function. If
559no such work is necessary @var{freefct} must point to a function doing
560nothing. It is called in any case.
561
562This function is a GNU extension and not covered by the @w{System V} or
563X/Open specifications.
564@end deftypefun
565
8ed0d867 566In addition to the functions to create and destroy the tree data
e8b1163e
AJ
567structure, there is another function which allows you to apply a
568function to all elements of the tree. The function must have this type:
2604afb1
UD
569
570@smallexample
8c479619 571void __action_fn_t (const void *nodep, VISIT value, int level);
2604afb1
UD
572@end smallexample
573
8c479619 574The @var{nodep} is the data value of the current node (once given as the
2604afb1
UD
575@var{key} argument to @code{tsearch}). @var{level} is a numeric value
576which corresponds to the depth of the current node in the tree. The
577root node has the depth @math{0} and its children have a depth of
578@math{1} and so on. The @code{VISIT} type is an enumeration type.
579
580@deftp {Data Type} VISIT
581The @code{VISIT} value indicates the status of the current node in the
582tree and how the function is called. The status of a node is either
583`leaf' or `internal node'. For each leaf node the function is called
584exactly once, for each internal node it is called three times: before
585the first child is processed, after the first child is processed and
f2ea0f5b 586after both children are processed. This makes it possible to handle all
2604afb1
UD
587three methods of tree traversal (or even a combination of them).
588
2fe82ca6 589@vtable @code
2604afb1
UD
590@item preorder
591The current node is an internal node and the function is called before
592the first child was processed.
da2a3ca6 593@item postorder
2604afb1
UD
594The current node is an internal node and the function is called after
595the first child was processed.
da2a3ca6 596@item endorder
2604afb1
UD
597The current node is an internal node and the function is called after
598the second child was processed.
599@item leaf
600The current node is a leaf.
2fe82ca6 601@end vtable
2604afb1
UD
602@end deftp
603
2604afb1 604@deftypefun void twalk (const void *@var{root}, __action_fn_t @var{action})
d08a7e4c 605@standards{SVID, search.h}
433c45a2 606@safety{@prelim{}@mtsafe{@mtsrace{:root}}@assafe{}@acsafe{}}
da2a3ca6 607For each node in the tree with a node pointed to by @var{root}, the
2604afb1
UD
608@code{twalk} function calls the function provided by the parameter
609@var{action}. For leaf nodes the function is called exactly once with
610@var{value} set to @code{leaf}. For internal nodes the function is
611called three times, setting the @var{value} parameter or @var{action} to
612the appropriate value. The @var{level} argument for the @var{action}
8ed0d867
RJ
613function is computed while descending the tree by increasing the value
614by one for each descent to a child, starting with the value @math{0} for
2604afb1
UD
615the root node.
616
617Since the functions used for the @var{action} parameter to @code{twalk}
da2a3ca6
UD
618must not modify the tree data, it is safe to run @code{twalk} in more
619than one thread at the same time, working on the same tree. It is also
2604afb1 620safe to call @code{tfind} in parallel. Functions which modify the tree
0bc93a2f 621must not be used, otherwise the behavior is undefined.
2604afb1 622@end deftypefun