2 .\" Copyright (c) 1999 The NetBSD Foundation, Inc.
3 .\" All rights reserved.
5 .\" This code is derived from software contributed to The NetBSD Foundation
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
17 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\" $FreeBSD: src/lib/libc/stdlib/hcreate.3,v 1.7 2008/07/06 17:03:37 danger Exp $
35 .Nm hcreate , hdestroy , hsearch
36 .Nd manage hash search table
42 .Fn hcreate "size_t nel"
46 .Fn hsearch "ENTRY item" "ACTION action"
53 functions manage hash search tables.
57 function allocates sufficient space for the table, and the application should
58 ensure it is called before
63 argument is an estimate of the maximum
64 number of entries that the table should contain.
65 This number may be adjusted upward by the
66 algorithm in order to obtain certain mathematically favorable circumstances.
70 function disposes of the search table, and may be followed by another call to
74 the data can no longer be considered accessible.
79 for each comparison key in the search table
80 but not the data item associated with the key.
84 function is a hash-table search routine.
85 It returns a pointer into a hash table
86 indicating the location at which an entry can be found.
89 argument is a structure of type
93 header) containing two pointers:
95 points to the comparison key (a
101 points to any other data to be associated with
103 The comparison function used by
110 member of an enumeration type
112 indicating the disposition of the entry if it cannot be
117 should be inserted in the table at an
120 indicates that no entry should be made.
121 Unsuccessful resolution is
122 indicated by the return of a
126 The comparison key (passed to
130 must be allocated using
142 function returns 0 if the table creation failed and the global variable
144 is set to indicate the error;
145 otherwise, a non-zero value is returned.
149 function does not return a value.
155 pointer if either the
161 could not be found or the
165 and the table is full.
167 The following example reads in strings followed by two numbers
168 and stores them in a hash table, discarding duplicates.
169 It then reads in strings and finds the matching entry in the hash
170 table and prints it out.
177 struct info { /* This is the info stored in the table */
178 int age, room; /* other than the key. */
181 #define NUM_EMPL 5000 /* # of elements in search table. */
186 char str[BUFSIZ]; /* Space to read string */
187 struct info info_space[NUM_EMPL]; /* Space to store employee info. */
188 struct info *info_ptr = info_space; /* Next space in info_space. */
190 ENTRY *found_item; /* Name to look for in table. */
191 char name_to_find[30];
194 /* Create table; no error checking is performed. */
195 (void) hcreate(NUM_EMPL);
197 while (scanf("%s%d%d", str, &info_ptr->age,
198 &info_ptr->room) != EOF && i++ < NUM_EMPL) {
199 /* Put information in structure, and structure in item. */
200 item.key = strdup(str);
201 item.data = info_ptr;
203 /* Put item into table. */
204 (void) hsearch(item, ENTER);
208 item.key = name_to_find;
209 while (scanf("%s", item.key) != EOF) {
210 if ((found_item = hsearch(item, FIND)) != NULL) {
211 /* If item is in the table. */
212 (void)printf("found %s, age = %d, room = %d\en",
214 ((struct info *)found_item->data)->age,
215 ((struct info *)found_item->data)->room);
217 (void)printf("no such employee %s\en", name_to_find);
228 functions may fail if:
231 Insufficient storage space is available.
233 A table already exists.
255 functions first appeared in
258 The interface permits the use of only one hash table at a time.