Database
mathews.lst
Associated article: Threaded Binary Trees
Tags: Database .NET
_Threaded Binary Trees_
by James Mathews
Listing One
/* 001 23-Apr-87 tbtree.h
Header file for threaded binary tree functions.
This code is hereby placed into the public domain.
*/
/* define TREE_NODE type */
typedef struct _tree_ent {
char *word; /* word ptr for ...


