summaryrefslogtreecommitdiffstats
path: root/WWW/Library/Implementation/HTBTree.c
blob: f595bae0e6405b4439710989032e297af3853332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
/*                  Binary Tree for sorting things
 *                  ==============================
 *                      Author: Arthur Secret
 *
 *       4 March 94: Bug fixed in the balancing procedure
 *
 */

#include <HTUtils.h>
#include <HTBTree.h>

#define MAXIMUM(a,b) ((a)>(b)?(a):(b))

#include <LYLeaks.h>

/*********************************************************
 * This function returns an HTBTree with memory allocated
 * for it when given a mean to compare things
 */
HTBTree *HTBTree_new(HTComparer comp)
{
    HTBTree *tree = typeMalloc(HTBTree);

    if (tree == NULL)
	outofmem(__FILE__, "HTBTree_new");

    tree->compare = comp;
    tree->top = NULL;

    return tree;
}

/*********************************************************
 * This void will free the memory allocated for one element
 */
static void HTBTElement_free(HTBTElement *element)
{
    if (element) {
	if (element->left != NULL)
	    HTBTElement_free(element->left);
	if (element->right != NULL)
	    HTBTElement_free(element->right);
	FREE(element);
    }
}

/*************************************************************
 * This void will free the memory allocated for the whole tree
 */
void HTBTree_free(HTBTree *tree)
{
    HTBTElement_free(tree->top);
    FREE(tree);
}

/*********************************************************
 * This void will free the memory allocated for one element
 */
static void HTBTElementAndObject_free(HTBTElement *element)
{
    if (element) {		/* Just in case nothing was in the tree anyway */
	if (element->left != NULL)
	    HTBTElementAndObject_free(element->left);
	if (element->right != NULL)
	    HTBTElementAndObject_free(element->right);
	FREE(element->object);
	FREE(element);
    }
}

/*************************************************************
 * This void will free the memory allocated for the whole tree
 */
void HTBTreeAndObject_free(HTBTree *tree)
{
    HTBTElementAndObject_free(tree->top);
    FREE(tree);
}

/*********************************************************************
 * Returns a pointer to equivalent object in a tree or NULL if none.
 */
void *HTBTree_search(HTBTree *tree,
		     void *object)
{
    HTBTElement *cur = tree->top;
    int res;

    while (cur != NULL) {
	res = tree->compare(object, cur->object);

	if (res == 0)
	    return cur->object;
	else if (res < 0)
	    cur = cur->left;
	else if (res > 0)
	    cur = cur->right;
    }
    return NULL;
}

/*********************************************************************
 * This void is the core of HTBTree.c . It will
 *       1/ add a new element to the tree at the right place
 *		so that the tree remains sorted
 *       2/ balance the tree to be as fast as possible when reading it
 */
void HTBTree_add(HTBTree *tree,
		 void *object)
{
    HTBTElement *father_of_element;
    HTBTElement *added_element;
    HTBTElement *forefather_of_element;
    HTBTElement *father_of_forefather;
    BOOL father_found, top_found;
    int depth, depth2, corrections;

    /* father_of_element is a pointer to the structure that is the father of
     * the new object "object".  added_element is a pointer to the structure
     * that contains or will contain the new object "object". 
     * father_of_forefather and forefather_of_element are pointers that are
     * used to modify the depths of upper elements, when needed.
     *
     * father_found indicates by a value NO when the future father of "object"
     * is found.  top_found indicates by a value NO when, in case of a
     * difference of depths < 2, the top of the tree is encountered and forbids
     * any further try to balance the tree.  corrections is an integer used to
     * avoid infinite loops in cases such as:
     *
     *             3                        3
     *          4                              4
     *           5                            5
     *
     * 3 is used here to show that it need not be the top of the tree.
     */

    /*
     * 1/ Adding of the element to the binary tree
     */

    if (tree->top == NULL) {
	tree->top = typeMalloc(HTBTElement);

	if (tree->top == NULL)
	    outofmem(__FILE__, "HTBTree_add");

	tree->top->up = NULL;
	tree->top->object = object;
	tree->top->left = NULL;
	tree->top->left_depth = 0;
	tree->top->right = NULL;
	tree->top->right_depth = 0;
    } else {
	father_found = YES;
	father_of_element = tree->top;
	added_element = NULL;
	father_of_forefather = NULL;
	forefather_of_element = NULL;
	while (father_found) {
	    int res = tree->compare(object, father_of_element->object);

	    if (res < 0) {
		if (father_of_element->left != NULL)
		    father_of_element = father_of_element->left;
		else {
		    father_found = NO;
		    father_of_element->left = typeMalloc(HTBTElement);

		    if (father_of_element->left == NULL)
			outofmem(__FILE__, "HTBTree_add");

		    added_element = father_of_element->left;
		    added_element->up = father_of_element;
		    added_element->object = object;
		    added_element->left = NULL;
		    added_element->left_depth = 0;
		    added_element->right = NULL;
		    added_element->right_depth = 0;
		}
	    } else {		/* res >= 0 */
		if (father_of_element->right != NULL) {
		    father_of_element = father_of_element->right;
		} else {
		    father_found = NO;
		    father_of_element->right = typeMalloc(HTBTElement);

		    if (father_of_element->right == NULL)
			outofmem(__FILE__, "HTBTree_add");

		    added_element = father_of_element->right;
		    added_element->up = father_of_element;
		    added_element->object = object;
		    added_element->left = NULL;
		    added_element->left_depth = 0;
		    added_element->right = NULL;
		    added_element->right_depth = 0;
		}
	    }
	}

	/*
	 * Changing of all depths that need to be changed
	 */
	father_of_forefather = father_of_element;
	forefather_of_element = added_element;
	do {
	    if (father_of_forefather->left == forefather_of_element) {
		depth = father_of_forefather->left_depth;
		father_of_forefather->left_depth = 1
		    + MAXIMUM(forefather_of_element->right_depth,
			      forefather_of_element->left_depth);
		depth2 = father_of_forefather->left_depth;
	    } else {
		depth = father_of_forefather->right_depth;
		father_of_forefather->right_depth = 1
		    + MAXIMUM(forefather_of_element->right_depth,
			      forefather_of_element->left_depth);
		depth2 = father_of_forefather->right_depth;
	    }
	    forefather_of_element = father_of_forefather;
	    father_of_forefather = father_of_forefather->up;
	} while ((depth != depth2) && (father_of_forefather != NULL));

	/*
	 * 2/ Balancing the binary tree, if necessary
	 */
	top_found = YES;
	corrections = 0;
	while ((top_found) && (corrections < 7)) {
	    if ((abs(father_of_element->left_depth
		     - father_of_element->right_depth)) < 2) {
		if (father_of_element->up != NULL)
		    father_of_element = father_of_element->up;
		else
		    top_found = NO;
	    } else {		/* We start the process of balancing */

		corrections = corrections + 1;
		/*
		 * corrections is an integer used to avoid infinite
		 * loops in cases such as:
		 *
		 *             3                        3
		 *          4                              4
		 *           5                            5
		 *
		 * 3 is used to show that it need not be the top of the tree
		 * But let's avoid these two exceptions anyhow
		 * with the two following conditions (4 March 94 - AS)
		 */

		if (father_of_element->left == NULL) {
		    if ((father_of_element->right != NULL)
			&& (father_of_element->right->right == NULL)
			&& (father_of_element->right->left != NULL)
			&& (father_of_element->right->left->left == NULL)
			&& (father_of_element->right->left->right == NULL)) {
			corrections = 7;
		    }
		} else {
		    if ((father_of_element->right == NULL)
			&& (father_of_element->left->left == NULL)
			&& (father_of_element->left->right != NULL)
			&& (father_of_element->left->right->right == NULL)
			&& (father_of_element->left->right->left == NULL)) {
			corrections = 7;
		    }
		}

		if ((father_of_element->left != NULL)
		    && (father_of_element->left_depth > father_of_element->right_depth)) {
		    added_element = father_of_element->left;
		    father_of_element->left_depth = added_element->right_depth;
		    added_element->right_depth = 1
			+ MAXIMUM(father_of_element->right_depth,
				  father_of_element->left_depth);
		    if (father_of_element->up != NULL) {
			/* Bug fixed in March 94  -  AS */
			BOOL first_time;

			father_of_forefather = father_of_element->up;
			forefather_of_element = added_element;
			first_time = YES;
			do {
			    if (father_of_forefather->left
				== forefather_of_element->up) {
				depth = father_of_forefather->left_depth;
				if (first_time) {
				    father_of_forefather->left_depth = 1
					+ MAXIMUM(forefather_of_element->left_depth,
						  forefather_of_element->right_depth);
				    first_time = NO;
				} else
				    father_of_forefather->left_depth = 1
					+ MAXIMUM(forefather_of_element->up->left_depth,
						  forefather_of_element->up->right_depth);

				depth2 = father_of_forefather->left_depth;
			    } else {
				depth = father_of_forefather->right_depth;
				if (first_time) {
				    father_of_forefather->right_depth = 1
					+ MAXIMUM(forefather_of_element->left_depth,
						  forefather_of_element->right_depth);
				    first_time = NO;
				} else
				    father_of_forefather->right_depth = 1
					+ MAXIMUM(forefather_of_element->up->left_depth,
						  forefather_of_element->up->right_depth);
				depth2 = father_of_forefather->right_depth;
			    }
			    forefather_of_element = forefather_of_element->up;
			    father_of_forefather = father_of_forefather->up;
			} while ((depth != depth2) &&
				 (father_of_forefather != NULL));
			father_of_forefather = father_of_element->up;
			if (father_of_forefather->left == father_of_element) {
			    /*
			     *                   3                       3
			     *               4                       5
			     * When tree   5   6        becomes    7    4
			     *            7 8                          8 6
			     *
			     * 3 is used to show that it may not be the top of the
			     * tree.
			     */
			    father_of_forefather->left = added_element;
			    father_of_element->left = added_element->right;
			    added_element->right = father_of_element;
			}
			if (father_of_forefather->right == father_of_element) {
			    /*
			     *          3                       3
			     *               4                       5
			     * When tree   5   6        becomes    7    4
			     *            7 8                          8 6
			     *
			     * 3 is used to show that it may not be the top of the
			     * tree
			     */
			    father_of_forefather->right = added_element;
			    father_of_element->left = added_element->right;
			    added_element->right = father_of_element;
			}
			added_element->up = father_of_forefather;
		    } else {
			/*

			 *               1                       2
			 * When tree   2   3        becomes    4    1
			 *            4 5                          5 3
			 *
			 * 1 is used to show that it is the top of the tree
			 */
			added_element->up = NULL;
			father_of_element->left = added_element->right;
			added_element->right = father_of_element;
		    }
		    father_of_element->up = added_element;
		    if (father_of_element->left != NULL)
			father_of_element->left->up = father_of_element;
		} else if (father_of_element->right != NULL) {
		    added_element = father_of_element->right;
		    father_of_element->right_depth = added_element->left_depth;
		    added_element->left_depth = 1 +
			MAXIMUM(father_of_element->right_depth,
				father_of_element->left_depth);
		    if (father_of_element->up != NULL)
			/* Bug fixed in March 94  -  AS */
		    {
			BOOL first_time;

			father_of_forefather = father_of_element->up;
			forefather_of_element = added_element;
			first_time = YES;
			do {
			    if (father_of_forefather->left
				== forefather_of_element->up) {
				depth = father_of_forefather->left_depth;
				if (first_time) {
				    father_of_forefather->left_depth = 1
					+ MAXIMUM(forefather_of_element->left_depth,
						  forefather_of_element->right_depth);
				    first_time = NO;
				} else
				    father_of_forefather->left_depth = 1
					+ MAXIMUM(forefather_of_element->up->left_depth,
						  forefather_of_element->up->right_depth);
				depth2 = father_of_forefather->left_depth;
			    } else {
				depth = father_of_forefather->right_depth;
				if (first_time) {
				    father_of_forefather->right_depth = 1
					+ MAXIMUM(forefather_of_element->left_depth,
						  forefather_of_element->right_depth);
				    first_time = NO;
				} else
				    father_of_forefather->right_depth = 1
					+ MAXIMUM(forefather_of_element->up->left_depth,
						  forefather_of_element->up->right_depth);
				depth2 = father_of_forefather->right_depth;
			    }
			    father_of_forefather = father_of_forefather->up;
			    forefather_of_element = forefather_of_element->up;
			} while ((depth != depth2) &&
				 (father_of_forefather != NULL));
			father_of_forefather = father_of_element->up;
			if (father_of_forefather->left == father_of_element) {
			    /*
			     *                    3                       3
			     *               4                       6
			     * When tree   5   6        becomes    4    8
			     *                7 8                 5 7
			     *
			     * 3 is used to show that it may not be the top of the
			     * tree.
			     */
			    father_of_forefather->left = added_element;
			    father_of_element->right = added_element->left;
			    added_element->left = father_of_element;
			}
			if (father_of_forefather->right == father_of_element) {
			    /*
			     *           3                      3
			     *               4                       6
			     * When tree   5   6        becomes    4    8
			     *                7 8                 5 7
			     *
			     * 3 is used to show that it may not be the top of the
			     * tree
			     */
			    father_of_forefather->right = added_element;
			    father_of_element->right = added_element->left;
			    added_element->left = father_of_element;
			}
			added_element->up = father_of_forefather;
		    } else {
			/*

			 *               1                       3
			 * When tree   2   3        becomes    1    5
			 *                4 5                 2 4
			 *
			 * 1 is used to show that it is the top of the tree.
			 */
			added_element->up = NULL;
			father_of_element->right = added_element->left;
			added_element->left = father_of_element;
		    }
		    father_of_element->up = added_element;
		    if (father_of_element->right != NULL)
			father_of_element->right->up = father_of_element;
		}
	    }
	}
	while (father_of_element->up != NULL) {
	    father_of_element = father_of_element->up;
	}
	tree->top = father_of_element;
    }
}

/*************************************************************************
 * this function returns a pointer to the leftmost element if ele is NULL,
 * and to the next object to the right otherwise.
 * If no elements left, returns a pointer to NULL.
 */
HTBTElement *HTBTree_next(HTBTree *tree,
			  HTBTElement *ele)
{
    HTBTElement *father_of_element;
    HTBTElement *father_of_forefather;

    if (ele == NULL) {
	father_of_element = tree->top;
	if (father_of_element != NULL)
	    while (father_of_element->left != NULL)
		father_of_element = father_of_element->left;
    } else {
	father_of_element = ele;
	if (father_of_element->right != NULL) {
	    father_of_element = father_of_element->right;
	    while (father_of_element->left != NULL)
		father_of_element = father_of_element->left;
	} else {
	    father_of_forefather = father_of_element->up;
	    while (father_of_forefather &&
		   (father_of_forefather->right == father_of_element)) {
		father_of_element = father_of_forefather;
		father_of_forefather = father_of_element->up;
	    }
	    father_of_element = father_of_forefather;
	}
    }
#ifdef BTREE_TRACE
    /* The option -DBTREE_TRACE will give much more information
     * about the way the process is running, for debugging matters
     */
    if (father_of_element != NULL) {
	printf("\nObject = %s\t", (char *) father_of_element->object);
	if (father_of_element->up != NULL)
	    printf("Objet du pere = %s\n",
		   (char *) father_of_element->up->object);
	else
	    printf("Pas de Pere\n");
	if (father_of_element->left != NULL)
	    printf("Objet du fils gauche = %s\t",
		   (char *) father_of_element->left->object);
	else
	    printf("Pas de fils gauche\t");
	if (father_of_element->right != NULL)
	    printf("Objet du fils droit = %s\n",
		   (char *) father_of_element->right->object);
	else
	    printf("Pas de fils droit\n");
	printf("Profondeur gauche = %d\t", father_of_element->left_depth);
	printf("Profondeur droite = %d\n", father_of_element->right_depth);
	printf("      **************\n");
    }
#endif
    return father_of_element;
}

#ifdef TEST
/*****************************************************
 * This is just a test to show how to handle HTBTree.c
 */
main()
{
    HTBTree *tree;
    HTBTElement *next_element;

    tree = HTBTree_new((HTComparer) strcasecomp);
    HTBTree_add(tree, "hypertext");
    HTBTree_add(tree, "Addressing");
    HTBTree_add(tree, "X11");
    HTBTree_add(tree, "Tools");
    HTBTree_add(tree, "Proposal.wn");
    HTBTree_add(tree, "Protocols");
    HTBTree_add(tree, "NeXT");
    HTBTree_add(tree, "Daemon");
    HTBTree_add(tree, "Test");
    HTBTree_add(tree, "Administration");
    HTBTree_add(tree, "LineMode");
    HTBTree_add(tree, "DesignIssues");
    HTBTree_add(tree, "MarkUp");
    HTBTree_add(tree, "Macintosh");
    HTBTree_add(tree, "Proposal.rtf.wn");
    HTBTree_add(tree, "FIND");
    HTBTree_add(tree, "Paper");
    HTBTree_add(tree, "Tcl");
    HTBTree_add(tree, "Talks");
    HTBTree_add(tree, "Architecture");
    HTBTree_add(tree, "VMSHelp");
    HTBTree_add(tree, "Provider");
    HTBTree_add(tree, "Archive");
    HTBTree_add(tree, "SLAC");
    HTBTree_add(tree, "Project");
    HTBTree_add(tree, "News");
    HTBTree_add(tree, "Viola");
    HTBTree_add(tree, "Users");
    HTBTree_add(tree, "FAQ");
    HTBTree_add(tree, "WorkingNotes");
    HTBTree_add(tree, "Windows");
    HTBTree_add(tree, "FineWWW");
    HTBTree_add(tree, "Frame");
    HTBTree_add(tree, "XMosaic");
    HTBTree_add(tree, "People");
    HTBTree_add(tree, "All");
    HTBTree_add(tree, "Curses");
    HTBTree_add(tree, "Erwise");
    HTBTree_add(tree, "Carl");
    HTBTree_add(tree, "MidasWWW");
    HTBTree_add(tree, "XPM");
    HTBTree_add(tree, "MailRobot");
    HTBTree_add(tree, "Illustrations");
    HTBTree_add(tree, "VMClient");
    HTBTree_add(tree, "XPA");
    HTBTree_add(tree, "Clients.html");
    HTBTree_add(tree, "Library");
    HTBTree_add(tree, "CERNLIB_Distribution");
    HTBTree_add(tree, "libHTML");
    HTBTree_add(tree, "WindowsPC");
    HTBTree_add(tree, "tkWWW");
    HTBTree_add(tree, "tk2.3");
    HTBTree_add(tree, "CVS-RCS");
    HTBTree_add(tree, "DecnetSockets");
    HTBTree_add(tree, "SGMLStream");
    HTBTree_add(tree, "NextStep");
    HTBTree_add(tree, "CVSRepository_old");
    HTBTree_add(tree, "ArthurSecret");
    HTBTree_add(tree, "CVSROOT");
    HTBTree_add(tree, "HytelnetGate");
    HTBTree_add(tree, "cern.www.new.src");
    HTBTree_add(tree, "Conditions");
    HTBTree_add(tree, "HTMLGate");
    HTBTree_add(tree, "Makefile");
    HTBTree_add(tree, "Newsgroups.html");
    HTBTree_add(tree, "People.html");
    HTBTree_add(tree, "Bugs.html");
    HTBTree_add(tree, "Summary.html");
    HTBTree_add(tree, "zDesignIssues.wn");
    HTBTree_add(tree, "HT.draw");
    HTBTree_add(tree, "HTandCERN.wn");
    HTBTree_add(tree, "Ideas.wn");
    HTBTree_add(tree, "MarkUp.wn");
    HTBTree_add(tree, "Proposal.html");
    HTBTree_add(tree, "SearchPanel.draw");
    HTBTree_add(tree, "Comments.wn");
    HTBTree_add(tree, "Xanadu.html");
    HTBTree_add(tree, "Storinglinks.html");
    HTBTree_add(tree, "TheW3Book.html");
    HTBTree_add(tree, "Talk_Feb-91.html");
    HTBTree_add(tree, "JFosterEntry.txt");
    HTBTree_add(tree, "Summary.txt");
    HTBTree_add(tree, "Bibliography.html");
    HTBTree_add(tree, "HTandCern.txt");
    HTBTree_add(tree, "Talk.draw");
    HTBTree_add(tree, "zDesignNotes.html");
    HTBTree_add(tree, "Link.html");
    HTBTree_add(tree, "Status.html");
    HTBTree_add(tree, "http.txt");
    HTBTree_add(tree, "People.html~");
    HTBTree_add(tree, "TAGS");
    HTBTree_add(tree, "summary.txt");
    HTBTree_add(tree, "Technical.html");
    HTBTree_add(tree, "Terms.html");
    HTBTree_add(tree, "JANETAccess.html");
    HTBTree_add(tree, "People.txt");
    HTBTree_add(tree, "README.txt");
    HTBTree_add(tree, "CodingStandards.html");
    HTBTree_add(tree, "Copyright.txt");
    HTBTree_add(tree, "Status_old.html");
    HTBTree_add(tree, "patches~");
    HTBTree_add(tree, "RelatedProducts.html");
    HTBTree_add(tree, "Implementation");
    HTBTree_add(tree, "History.html");
    HTBTree_add(tree, "Makefile.bak");
    HTBTree_add(tree, "Makefile.old");
    HTBTree_add(tree, "Policy.html");
    HTBTree_add(tree, "WhatIs.html");
    HTBTree_add(tree, "TheProject.html");
    HTBTree_add(tree, "Notation.html");
    HTBTree_add(tree, "Helping.html");
    HTBTree_add(tree, "Cyber-WWW.sit.Hqx");
    HTBTree_add(tree, "Glossary.html");
    HTBTree_add(tree, "maketags.html");
    HTBTree_add(tree, "IntroCS.html");
    HTBTree_add(tree, "Contrib");
    HTBTree_add(tree, "Help.html");
    HTBTree_add(tree, "CodeManagExec");
    HTBTree_add(tree, "HT-0.1draz");
    HTBTree_add(tree, "Cello");
    HTBTree_add(tree, "TOPUB");
    HTBTree_add(tree, "BUILD");
    HTBTree_add(tree, "BUILDALL");
    HTBTree_add(tree, "Lynx");
    HTBTree_add(tree, "ArthurLibrary");
    HTBTree_add(tree, "RashtyClient");
    HTBTree_add(tree, "#History.html#");
    HTBTree_add(tree, "PerlServers");
    HTBTree_add(tree, "modules");
    HTBTree_add(tree, "NCSA_httpd");
    HTBTree_add(tree, "MAIL2HTML");
    HTBTree_add(tree, "core");
    HTBTree_add(tree, "EmacsWWW");
#ifdef BTREE_TRACE
    printf("\nTreeTopObject=%s\n\n", tree->top->object);
#endif
    next_element = HTBTree_next(tree, NULL);
    while (next_element != NULL) {
#ifndef BTREE_TRACE
	printf("The next element is %s\n", next_element->object);
#endif
	next_element = HTBTree_next(tree, next_element);
    }
    HTBTree_free(tree);
}

#endif