2002-10-03 06:31:16 +00:00
|
|
|
/*-
|
2000-07-01 06:55:11 +00:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>
|
|
|
|
* Public domain.
|
2002-10-03 06:31:16 +00:00
|
|
|
*
|
|
|
|
* $NetBSD: search.h,v 1.12 1999/02/22 10:34:28 christos Exp $
|
|
|
|
* $FreeBSD$
|
2000-07-01 06:55:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SEARCH_H_
|
|
|
|
#define _SEARCH_H_
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
2000-07-01 06:55:11 +00:00
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _SIZE_T_DECLARED
|
|
|
|
typedef __size_t size_t;
|
|
|
|
#define _SIZE_T_DECLARED
|
2000-07-01 06:55:11 +00:00
|
|
|
#endif
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef struct entry {
|
|
|
|
char *key;
|
|
|
|
void *data;
|
2000-07-01 06:55:11 +00:00
|
|
|
} ENTRY;
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef enum {
|
2000-07-01 06:55:11 +00:00
|
|
|
FIND, ENTER
|
|
|
|
} ACTION;
|
|
|
|
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef enum {
|
2000-07-01 06:55:11 +00:00
|
|
|
preorder,
|
|
|
|
postorder,
|
|
|
|
endorder,
|
|
|
|
leaf
|
|
|
|
} VISIT;
|
|
|
|
|
|
|
|
#ifdef _SEARCH_PRIVATE
|
2002-10-03 06:31:16 +00:00
|
|
|
typedef struct node {
|
2000-07-01 06:55:11 +00:00
|
|
|
char *key;
|
|
|
|
struct node *llink, *rlink;
|
|
|
|
} node_t;
|
2002-10-16 14:00:46 +00:00
|
|
|
|
|
|
|
struct que_elem {
|
|
|
|
struct que_elem *next;
|
|
|
|
struct que_elem *prev;
|
|
|
|
};
|
2000-07-01 06:55:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
int hcreate(size_t);
|
|
|
|
void hdestroy(void);
|
|
|
|
ENTRY *hsearch(ENTRY, ACTION);
|
2002-10-16 14:00:46 +00:00
|
|
|
void insque(void *, void *);
|
|
|
|
void remque(void *);
|
2002-09-06 11:24:06 +00:00
|
|
|
void *tdelete(const void * __restrict, void ** __restrict,
|
2002-08-14 21:16:41 +00:00
|
|
|
int (*)(const void *, const void *));
|
2002-10-03 06:31:16 +00:00
|
|
|
void *tfind(const void *, void * const *,
|
|
|
|
int (*)(const void *, const void *));
|
2002-03-23 17:24:55 +00:00
|
|
|
void *tsearch(const void *, void **, int (*)(const void *, const void *));
|
2002-10-03 06:31:16 +00:00
|
|
|
void twalk(const void *, void (*)(const void *, VISIT, int));
|
2000-07-01 06:55:11 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_SEARCH_H_ */
|