1 /* $NetBSD: tdelete.c,v 1.6 2012/06/25 22:32:45 abs Exp $ */
4 * Tree search generalized from Knuth (6.2.2) Algorithm T just like
5 * the AT&T man page says.
7 * The node_t structure is for internal use only, lint doesn't grok it.
9 * Written by reading the System V Interface Definition, not the code.
11 * Totally public domain.
14 #include <sys/cdefs.h>
15 #if defined(LIBC_SCCS) && !defined(lint)
16 __RCSID("$NetBSD: tdelete.c,v 1.6 2012/06/25 22:32:45 abs Exp $");
17 #endif /* LIBC_SCCS and not lint */
20 #define _SEARCH_PRIVATE
25 /* find a node with key "vkey" in tree "vrootp" */
27 tdelete(const void *vkey
, void **vrootp
,
28 int (*compar
)(const void *, const void *))
30 node_t
**rootp
= (node_t
**)vrootp
;
34 _DIAGASSERT(vkey
!= NULL
);
35 _DIAGASSERT(compar
!= NULL
);
37 if (rootp
== NULL
|| (p
= *rootp
) == NULL
)
40 while ((cmp
= (*compar
)(vkey
, (*rootp
)->key
)) != 0) {
43 &(*rootp
)->llink
: /* follow llink branch */
44 &(*rootp
)->rlink
; /* follow rlink branch */
46 return NULL
; /* key not found */
48 r
= (*rootp
)->rlink
; /* D1: */
49 if ((q
= (*rootp
)->llink
) == NULL
) /* Left NULL? */
51 else if (r
!= NULL
) { /* Right link is NULL? */
52 if (r
->llink
== NULL
) { /* D2: Find successor */
55 } else { /* D3: Find NULL link */
56 for (q
= r
->llink
; q
->llink
!= NULL
; q
= r
->llink
)
59 q
->llink
= (*rootp
)->llink
;
60 q
->rlink
= (*rootp
)->rlink
;
64 free(*rootp
); /* D4: Free node */
65 *rootp
= q
; /* link parent to new node */