OSDN Git Service

(split) LDP_man-pages: release ioctl.2 [JM:00378]
[linuxjm/LDP_man-pages.git] / draft / man3 / tsearch.3
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\" Copyright 1995 by Jim Van Zandt <jrv@vanzandt.mv.com>
3 .\"
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\"
24 .\" Japanese Version Copyright (c) 1999 ishikawa, keisuke
25 .\"         all rights reserved.
26 .\" Translated Tue Mar  9 08:21:04 JST 1999
27 .\"         by ishikawa, keisuke <ishikawa@sgk.gr.jp>
28 .\" Updated & Modified Sun Jan 20 11:31:46 JST 2002
29 .\"         by Yuichi SATO <ysato@h4.dion.ne.jp>
30 .\"
31 .TH TSEARCH 3  2008-09-23 "GNU" "Linux Programmer's Manual"
32 .\"O .SH NAME
33 .SH Ì¾Á°
34 .\"O tsearch, tfind, tdelete, twalk, tdestroy \- manage a binary tree
35 tsearch, tfind, tdelete, twalk, tdestroy \- ÆóʬÌÚ (binary tree) ¤ÎÁàºî
36 .\"O .SH SYNOPSIS
37 .SH ½ñ¼°
38 .nf
39 .B #include <search.h>
40 .sp
41 .BI "void *tsearch(const void *" key ", void **" rootp ,
42 .BI "                int (*" compar ")(const void *, const void *));"
43 .sp
44 .BI "void *tfind(const void *" key ", const void **" rootp ,
45 .BI "                int (*" compar ")(const void *, const void *));"
46 .sp
47 .BI "void *tdelete(const void *" key ", void **" rootp ,
48 .BI "                int (*" compar ")(const void *, const void *));"
49 .sp
50 .BI "void twalk(const void *" root ", void (*" action ")(const void *" nodep ,
51 .BI "                                   const VISIT " which ,
52 .BI "                                   const int " depth "));"
53 .sp
54 .\"O .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
55 .BR "#define _GNU_SOURCE" "         /* feature_test_macros(7) »²¾È */"
56 .br
57 .B #include <search.h>
58 .sp
59 .BI "void tdestroy(void *" root ", void (*" free_node ")(void *" nodep ));
60 .fi
61 .\"O .SH DESCRIPTION
62 .SH ÀâÌÀ
63 .\"O .BR tsearch (),
64 .\"O .BR tfind (),
65 .\"O .BR twalk (),
66 .\"O and
67 .\"O .BR tdelete ()
68 .\"O manage a
69 .\"O binary tree.
70 .\"O They are generalized from Knuth (6.2.2) Algorithm T.
71 .\"O The first field in each node of the tree is a pointer to the
72 .\"O corresponding data item.
73 .\"O (The calling program must store the actual data.)
74 .\"O \fIcompar\fP points to a comparison routine, which takes
75 .\"O pointers to two items.
76 .\"O It should return an integer which is negative,
77 .\"O zero, or positive, depending on whether the first item is less than,
78 .\"O equal to, or greater than the second.
79 .BR tsearch (),
80 .BR tfind (),
81 .BR twalk (),
82 .BR tdelete ()
83 ¤Ï
84 ÆóʬÌÚ¤òÁàºî¤¹¤ë´Ø¿ô¤Ç¤¢¤ë¡£
85 ¤³¤ì¤é¤Î´Ø¿ô¤Ï Knuth (6.2.2) Algorithm T ¤Ë´ð¤Å¤¤¤Æ¤¤¤ë¡£
86 ÌÚ¹½Â¤¤Ë¤ª¤±¤ë³Æ¥Î¡¼¥É¤ÎºÇ½é¤Î¥Õ¥£¡¼¥ë¥É¤Ï¡¢Âбþ¤¹¤ë¥Ç¡¼¥¿¡¦
87 ¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
88 (»²¾ÈÀè¤Î¥Ç¡¼¥¿¤Ï¡¢¸Æ¤Ó½Ð¤·¥×¥í¥°¥é¥à¤ÇÍÑ°Õ¤¹¤ë¡£)
89 \fIcompar\fP ¤ÏÈæ³Ó¥ë¡¼¥Á¥ó¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
90 Èæ³Ó¥ë¡¼¥Á¥ó¤Ï¡¢¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿ 2 ¤Ä¤ò°ú¿ô¤Ë»ý¤Ä¡£
91 Èæ³Ó¥ë¡¼¥Á¥ó¤ÎÊÖ¤êÃͤϡ¢1 ¤ÄÌܤΥ¢¥¤¥Æ¥à¤¬ 2 ¤ÄÌܤΥ¢¥¤¥Æ¥à¤è¤ê¤â
92 ¡Ö¾®¤µ¤¤¡¢Åù¤·¤¤¡¢Â礭¤¤¡×¤Ë¤è¤Ã¤Æ¡¢
93 ¡ÖÉé¡¢0¡¢Àµ¡×¤ÎÀ°¿ôÃͤǤʤ±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£
94 .PP
95 .\"O .BR tsearch ()
96 .\"O searches the tree for an item.
97 .\"O \fIkey\fP points to the item to be searched for.
98 .\"O \fIrootp\fP points to a
99 .\"O variable which points to the root of the tree.
100 .\"O If the tree is empty,
101 .\"O then the variable that \fIrootp\fP points to should be set to NULL.
102 .\"O If the item is found in the tree, then
103 .\"O .BR tsearch ()
104 .\"O returns a pointer
105 .\"O to it.
106 .\"O If it is not found, then
107 .\"O .BR tsearch ()
108 .\"O adds it, and returns a
109 .\"O pointer to the newly added item.
110 .BR tsearch ()
111 ¤Ï¡¢ÌÚ¹½Â¤¤«¤é¥¢¥¤¥Æ¥à¤ò¸¡º÷¤¹¤ë´Ø¿ô¤Ç¤¢¤ë¡£
112 \fIkey\fP ¤Ï¡¢¸¡º÷¤¹¤ë¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
113 \fIrootp\fP ¤ÏÌÚ¹½Â¤¤Îº¬¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
114 ÌÚ¹½Â¤¤¬¥Î¡¼¥É¤ò´Þ¤Þ¤Ê¤¤¾ì¹ç¡¢\fIrootp\fP ¤Î»²¾È¤·¤Æ¤¤¤ëÊÑ¿ô¤Ï
115 NULL ¤ËÀßÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£
116 ÌÚ¹½Â¤¤Ë¥¢¥¤¥Æ¥à¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢
117 .BR tsearch ()
118 ¤Ï¤½¤Î¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
119 ¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥¢¥¤¥Æ¥à¤òÌÚ¹½Â¤¤ËÄɲä·¡¢
120 Äɲä·¤¿¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
121 .PP
122 .\"O .BR tfind ()
123 .\"O is like
124 .\"O .BR tsearch (),
125 .\"O except that if the item is not
126 .\"O found, then
127 .\"O .BR tfind ()
128 .\"O returns NULL.
129 .BR tfind ()
130 ¤Ï¡¢
131 .BR tsearch ()
132 ¤Ë»÷¤Æ¤¤¤ë¤¬¡¢
133 ¥¢¥¤¥Æ¥à¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç NULL ¤òÊÖ¤¹ÅÀ¤¬°Û¤Ê¤ë¡£
134 .PP
135 .\"O .BR tdelete ()
136 .\"O deletes an item from the tree.
137 .\"O Its arguments are the same as for
138 .\"O .BR tsearch ().
139 .BR tdelete ()
140 ¤ÏÌÚ¹½Â¤¤«¤é¥¢¥¤¥Æ¥à¤òºï½ü¤¹¤ë¡£
141 °ú¿ô¤Ï
142 .BR tsearch ()
143 ¤ÈƱ¤¸¤Ç¤¢¤ë¡£
144 .PP
145 .\"O .BR twalk ()
146 .\"O performs depth-first, left-to-right traversal of a binary
147 .\"O tree.
148 .\"O \fIroot\fP points to the starting node for the traversal.
149 .\"O If that node is not the root, then only part of the tree will be visited.
150 .\"O .BR twalk ()
151 .\"O calls the user function \fIaction\fP each time a node is
152 .\"O visited (that is, three times for an internal node, and once for a
153 .\"O leaf).
154 .\"O \fIaction\fP, in turn, takes three arguments.
155 .\"O The first is a pointer to the node being visited.
156 .\"O The second is an integer which
157 .\"O takes on the values \fBpreorder\fP, \fBpostorder\fP, and
158 .\"O \fBendorder\fP depending on whether this is the first, second, or
159 .\"O third visit to the internal node, or \fBleaf\fP if it is the single
160 .\"O visit to a leaf node.
161 .\"O (These symbols are defined in \fI<search.h>\fP.)
162 .\"O The third argument is the depth of the node, with
163 .\"O zero being the root.
164 .BR twalk ()
165 ¤Ï¡¢ÆóʬÌÚ¤ò¿¼¤µÍ¥Àè (depth-first) ¤Ç¡¢
166 º¸¤«¤é±¦¤Ë¤¿¤É¤Ã¤Æ¤¤¤¯´Ø¿ô¤Ç¤¢¤ë¡£
167 \fIroot\fP ¤Ïµ¯ÅÀ¤È¤Ê¤ë¥Î¡¼¥É¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
168 \fIroot\fP ¤Ëº¬°Ê³°¤Î¥Î¡¼¥É¤ò»ØÄꤹ¤ë¤È¡¢ÉôʬÌÚ¤¬ÂоݤȤʤ롣
169 .BR twalk ()
170 ¤Ï¡¢¥Î¡¼¥É¤òˬ¤ì¤ëÅÙ¤Ë
171 (¤Ä¤Þ¤ê¡¢ÆâÉô¥Î¡¼¥É¤ËÂФ·¤Æ¤Ï 3 ²ó¡¢ÍÕ¤ËÂФ·¤Æ¤Ï 1 ²ó)
172 ¥æ¡¼¥¶´Ø¿ô \fIaction\fP ¤ò¸Æ¤Ó½Ð¤¹¡£
173 \fIaction\fP ¤Ë¤Ï°Ê²¼¤Î½ç¤Ë 3 ¤Ä¤Î°ú¿ô¤¬Í¿¤¨¤é¤ì¤ë¡£
174 ºÇ½é¤Î°ú¿ô¤Ïˬ¤ì¤¿¥Î¡¼¥É¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
175 2 ¤ÄÌܤΰú¿ô¤Ë¤Ï¡¢ÆâÉô¥Î¡¼¥É¤Î¾ì¹ç¤ÏˬÌä²ó¿ô¤Ë±þ¤¸¤Æ
176 \fBpreorder\fP, \fBpostorder\fP, \fBendorder\fP ¤¬¡¢
177 Íդξì¹ç¤Ï \fBleaf\fP ¤¬Í¿¤¨¤é¤ì¤ë¡£
178 (¤³¤ì¤é¤Î¥·¥ó¥Ü¥ë¤Ï \fI<search.h>\fP ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¡£)
179 3 ¤ÄÌܤΰú¿ô¤Ï¥Î¡¼¥É¤Î¿¼¤µ¤Ç¡¢º¬¤Î¾ì¹ç¤Ï 0 ¤Ç¤¢¤ë¡£
180 .PP
181 .\"O (More commonly, \fBpreorder\fP, \fBpostorder\fP, and \fBendorder\fP
182 .\"O are known as \fBpreorder\fP, \fBinorder\fP, and \fBpostorder\fP:
183 .\"O before visiting the children, after the first and before the second,
184 .\"O and after visiting the children.
185 .\"O Thus, the choice of name \fBpost\%order\fP
186 .\"O is rather confusing.)
187 (¤è¤ê°ìÈÌŪ¤Ë¤Ï¡¢\fBpreorder\fP, \fBpostorder\fP, \fBendorder\fP ¤Ï
188 \fBpreorder\fP, \fBinorder\fP, \fBpostorder\fP ¤È¤·¤ÆÃΤé¤ì¤Æ¤¤¤ë:
189 ¤½¤ì¤¾¤ì¡¢»ÒÍ×ÁǤòé¤ëÁ°¡¦ºÇ½é¤Î»ÒÍ×ÁǤòé¤Ã¤¿¸å¤«¤Ä 2 ÈÖÌܤλÒÍ×ÁǤòé¤ëÁ°¡¦
190 »ÒÍ×ÁǤòé¤Ã¤¿¸å¤È¤¤¤¦¤³¤È¤òɽ¤·¤Æ¤¤¤ë¡£
191 ¤è¤Ã¤Æ \fBpost\%order\fP ¤È¤¤¤¦Ì¾Á°¤òÁª¤Ö¤Î¤Ï¾¯¤·Ê¶¤é¤ï¤·¤¤¡£)
192 .PP
193 .\"O .BR tdestroy ()
194 .\"O removes the whole tree pointed to by \fIroot\fP,
195 .\"O freeing all resources allocated by the
196 .\"O .BR tsearch ()
197 .\"O function.
198 .\"O For the data in each tree node the function \fIfree_node\fP is called.
199 .\"O The pointer to the data is passed as the argument to the function.
200 .\"O If no such work is necessary \fIfree_node\fP must point to a function
201 .\"O doing nothing.
202 .BR tdestroy ()
203 ¤Ï \fIroot\fP ¤¬»Ø¤¹ÌÚ¹½Â¤Á´ÂΤòºï½ü¤·¡¢
204 .BR tsearch ()
205 ´Ø¿ô¤Ç³ÎÊݤµ¤ì¤¿¥ê¥½¡¼¥¹¤òÁ´¤Æ²òÊü¤¹¤ë¡£
206 ÌÚ¹½Â¤¤Î³Æ¥Î¡¼¥É¤Ë¤Ä¤¤¤Æ¡¢´Ø¿ô \fIfree_node\fP ¤¬¸Æ¤Ó½Ð¤µ¤ì¤ë¡£
207 ¥Ç¡¼¥¿¤Ø¤Î¥Ý¥¤¥ó¥¿¤¬¤³¤Î´Ø¿ô¤Î°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤ë¡£
208 ¤½¤Î¤è¤¦¤ÊÆ°ºî¤¬É¬ÍפǤʤ±¤ì¤Ð¡¢
209 \fIfree_node\fP ¤Ï²¿¤â¤·¤Ê¤¤´Ø¿ô¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£
210 .\"O .SH "RETURN VALUE"
211 .SH ÊÖ¤êÃÍ
212 .\"O .BR tsearch ()
213 .\"O returns a pointer to a matching item in the tree, or to
214 .\"O the newly added item, or NULL if there was insufficient memory
215 .\"O to add the item.
216 .\"O .BR tfind ()
217 .\"O returns a pointer to the item, or
218 .\"O NULL if no match is found.
219 .\"O If there are multiple elements that match the key,
220 .\"O the element returned is unspecified.
221 .BR tsearch ()
222 ¤Ï¡¢ÌÚ¹½Â¤¤Ë¸«¤Ä¤«¤Ã¤¿¥¢¥¤¥Æ¥à¤«¡¢
223 ¿·¤·¤¯Äɲä·¤¿¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
224 ¥á¥â¥ê¤ÎÉÔ­¤Î¤¿¤á¥¢¥¤¥Æ¥à¤òÄɲäǤ­¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï NULL ¤òÊÖ¤¹¡£
225 .BR tfind ()
226 ¤Ï¡¢¥¢¥¤¥Æ¥à¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
227 °ìÃפ¹¤ë¥¢¥¤¥Æ¥à¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï NULL ¤òÊÖ¤¹¡£
228 ¸¡º÷¾ò·ï¤Ë°ìÃפ¹¤ëÍ×ÁǤ¬Ê£¿ô¤¢¤ë¾ì¹ç¡¢ÊÖ¤µ¤ì¤ëÃͤÏÉÔÄê¤Ç¤¢¤ë¡£
229 .PP
230 .\"O .BR tdelete ()
231 .\"O returns a pointer to the parent of the item deleted, or
232 .\"O NULL if the item was not found.
233 .BR tdelete ()
234 ¤Ïºï½ü¤·¤¿¥¢¥¤¥Æ¥à¤Î¿Æ¤Ø¤Î¥Ý¥¤¥ó¥¿¤òÊÖ¤¹¡£
235 ¥¢¥¤¥Æ¥à¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï NULL ¤òÊÖ¤¹¡£
236 .PP
237 .\"O .BR tsearch (),
238 .\"O .BR tfind (),
239 .\"O and
240 .\"O .BR tdelete ()
241 .\"O also
242 .\"O return NULL if \fIrootp\fP was NULL on entry.
243 \fIrootp\fP ¤¬ NULL ¤Î¾ì¹ç¡¢
244 .BR tsearch (),
245 .BR tfind (),
246 .BR tdelete ()
247 ¤Ï NULL ¤òÊÖ¤¹¡£
248 .\"O .SH "CONFORMING TO"
249 .SH ½àµò
250 SVr4, POSIX.1-2001.
251 .\"O The function
252 .\"O .BR tdestroy ()
253 .\"O is a GNU extension.
254 ´Ø¿ô
255 .BR tdestroy ()
256 ¤Ï GNU ¤Î³ÈÄ¥¤Ç¤¢¤ë¡£
257 .\"O .SH NOTES
258 .SH Ãí°Õ
259 .\"O .BR twalk ()
260 .\"O takes a pointer to the root, while the other functions
261 .\"O take a pointer to a variable which points to the root.
262 .BR twalk ()
263 ¤Ïº¬¤Ø¤Î¥Ý¥¤¥ó¥¿¤ò°ú¿ô¤Ë¤È¤ë¤¬¡¢
264 ¤Û¤«¤Î´Ø¿ô¤Ïº¬¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ø¤Î¥Ý¥¤¥ó¥¿¤Ç¤¢¤ë¡£
265 .PP
266 .\"O .BR twalk ()
267 .\"O uses \fBpostorder\fP to mean "after the left subtree, but
268 .\"O before the right subtree".
269 .\"O Some authorities would call this
270 .\"O "inorder", and reserve "postorder" to mean "after both subtrees".
271 .BR twalk ()
272 ¤Ë¤ª¤¤¤Æ¤Ï¡¢\fBpostorder\fP ¤Ï
273 ¡Öº¸¤ÎÉôʬÌڤθå¤Ç¡¢±¦¤ÎÉôʬÌÚ¤ÎÁ°¡×¤ò°ÕÌ£¤·¤Æ¤¤¤ë¡£
274 ¤·¤«¤·¡¢¿Í¤Ë¤è¤Ã¤Æ¤Ï¤³¤ì¤ò "inorder" ¤È¸Æ¤ó¤Ç¡¢
275 "postorder" ¤ò¡ÖξÊý¤ÎÉôʬÌڤθå¡×¤È¤¹¤ë¾ì¹ç¤â¤¢¤ë¡£
276 .PP
277 .\"O .BR tdelete ()
278 .\"O frees the memory required for the node in the tree.
279 .\"O The user is responsible for freeing the memory for the corresponding
280 .\"O data.
281 .BR tdelete ()
282 ¤Ï¡¢ºï½ü¤·¤¿¥Î¡¼¥É¤Î»ÈÍѤ·¤Æ¤¤¤¿¥á¥â¥ê¤ò²òÊü¤¹¤ë¤¬¡¢
283 ¥Î¡¼¥É¤ËÂбþ¤¹¤ë¥Ç¡¼¥¿¤Î¥á¥â¥ê¤Ï¡¢¥æ¡¼¥¶¤¬²òÊü¤·¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¡£
284 .PP
285 .\"O The example program depends on the fact that
286 .\"O .BR twalk ()
287 .\"O makes no
288 .\"O further reference to a node after calling the user function with
289 .\"O argument "endorder" or "leaf".
290 .\"O This works with the GNU library
291 .\"O implementation, but is not in the System V documentation.
292 ²¼¤Î¥×¥í¥°¥é¥àÎã¤Ï¡¢¥æ¡¼¥¶´Ø¿ô¤¬ "endorder" ¤« "leaf" ¤ò°ú¿ô¤Ë¤·¤Æ
293 ¸Æ¤Ó½Ð¤µ¤ì¤Æ°Ê¹ß¤Ï¡¢
294 .BR twalk ()
295 ¤¬¤½¤Î¥Î¡¼¥É¤ò»²¾È¤·¤Ê¤¤¤³¤È¤òÁ°Äó¤È¤·¤Æ¤¤¤ë¡£
296 ¤³¤ì¤Ï GNU ¥é¥¤¥Ö¥é¥ê¤Î¼ÂÁõ¤Ç¤Ïµ¡Ç½¤¹¤ë¤¬¡¢System V ¤Î¥Þ¥Ë¥å¥¢¥ë¤Ë¤Ï¸ºß¤·¤Ê¤¤¡£
297 .\"O .SH EXAMPLE
298 .SH Îã
299 .\"O The following program inserts twelve random numbers into a binary
300 .\"O tree, where duplicate numbers are collapsed, then prints the numbers
301 .\"O in order.
302 °Ê²¼¤Î¥×¥í¥°¥é¥à¤Ï 12 ¸Ä¤ÎÍð¿ô¤òÆóʬÌÚ¤ËÁÞÆþ¤·¤¿¸å¡¢
303 ÁÞÆþ¤·¤¿¿ô¤ò½çÈ֤˽ÐÎϤ¹¤ë (ÁÞÆþ¤ÎºÝ¡¢½ÅÊ£¤·¤¿Íð¿ô¤Ï 1 ¤Ä¤Ë¤Þ¤È¤á¤é¤ì¤ë)¡£
304 .sp
305 .nf
306 #define _GNU_SOURCE     /* Expose declaration of tdestroy() */
307 #include <search.h>
308 #include <stdlib.h>
309 #include <stdio.h>
310 #include <time.h>
311
312 void *root = NULL;
313
314 void *
315 xmalloc(unsigned n)
316 {
317     void *p;
318     p = malloc(n);
319     if (p)
320         return p;
321     fprintf(stderr, "insufficient memory\\n");
322     exit(EXIT_FAILURE);
323 }
324
325 int
326 compare(const void *pa, const void *pb)
327 {
328     if (*(int *) pa < *(int *) pb)
329         return \-1;
330     if (*(int *) pa > *(int *) pb)
331         return 1;
332     return 0;
333 }
334
335 void
336 action(const void *nodep, const VISIT which, const int depth)
337 {
338     int *datap;
339
340     switch (which) {
341     case preorder:
342         break;
343     case postorder:
344         datap = *(int **) nodep;
345         printf("%6d\\n", *datap);
346         break;
347     case endorder:
348         break;
349     case leaf:
350         datap = *(int **) nodep;
351         printf("%6d\\n", *datap);
352         break;
353     }
354 }
355
356 int
357 main(void)
358 {
359     int i, *ptr;
360     void *val;
361
362     srand(time(NULL));
363     for (i = 0; i < 12; i++) {
364         ptr = (int *) xmalloc(sizeof(int));
365         *ptr = rand() & 0xff;
366         val = tsearch((void *) ptr, &root, compare);
367         if (val == NULL)
368             exit(EXIT_FAILURE);
369         else if ((*(int **) val) != ptr)
370             free(ptr);
371     }
372     twalk(root, action);
373     tdestroy(root, free);
374     exit(EXIT_SUCCESS);
375 }
376 .fi
377 .\"O .SH "SEE ALSO"
378 .SH ´ØÏ¢¹àÌÜ
379 .BR bsearch (3),
380 .BR hsearch (3),
381 .BR lsearch (3)
382 .BR qsort (3)