summary refs log tree commit diff stats
path: root/note/comms.html
diff options
context:
space:
mode:
Diffstat (limited to 'note/comms.html')
-rw-r--r--note/comms.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/note/comms.html b/note/comms.html
index d2c8ab4..952e5ad 100644
--- a/note/comms.html
+++ b/note/comms.html
@@ -8,6 +8,7 @@
 	</head>
 	<body class="indent">
 		<h1>Communication Guidelines</h1>
+		<p><a href="/contact.html">A few ways to contact me</a></p>
 		<p>
 		These are some general recommendations that I believe make communicating with me, at least, easier and/or more effective, including communication conventions that make me happier :D.  Please note that what I prefer may not be what others prefer and shall not be treated as a general guideline for communications.
 		</p>
grix/lynx-snapshots/blame/WWW/Library/Implementation/HTBTree.h?id=2d9e91f9543486865c65bf1b2837b2a7a1e3d1b9'>^
e087f6d4
79de4059 ^
e087f6d4
d3f9d547 ^




e087f6d4







































































79de4059 ^
e087f6d4

79de4059 ^
e087f6d4
79de4059 ^
e087f6d4


d3f9d547 ^
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

                                                                                             
 
                                                                           
 

                                                                               
 
                 
 
   




                    







































































                                                                 
 

                                                                                          
 
                                                                 
 


                                                                             
                      
/*                  /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTBTree.html
                         BALANCED BINARY TREE FOR SORTING THINGS

   Tree creation, traversal and freeing.  User-supplied comparison routine.

   Author: Arthur Secret, CERN. Public domain.  Please mail bugs and changes to
   www-request@info.cern.ch

   part of libWWW

 */
#ifndef HTBTREE_H
#define HTBTREE_H 1

#include <HTUtils.h>


/*

Data structures

 */
typedef struct _HTBTree_element {
    void                        *object;        /* User object */
    struct _HTBTree_element     *up;
    struct _HTBTree_element     *left;
    int                         left_depth;
    struct _HTBTree_element     *right;
    int                         right_depth;
} HTBTElement;

typedef int (*HTComparer) PARAMS((void * a, void * b));

typedef struct _HTBTree_top {
    HTComparer                  compare;
    struct _HTBTree_element     *top;
} HTBTree;


/*

Create a binary tree given its discrimination routine

 */
extern HTBTree * HTBTree_new PARAMS((HTComparer comp));



/*

Free storage of the tree but not of the objects

 */
extern void HTBTree_free PARAMS((HTBTree* tree));



/*

Free storage of the tree and of the objects

 */
extern void HTBTreeAndObject_free PARAMS((HTBTree* tree));



/*

Add an object to a binary tree

 */

extern void HTBTree_add PARAMS((HTBTree* tree, void * object));


/*

Find user object for element

 */
#define HTBTree_object(element)  ((element)->object)


/*

Find next element in depth-first order

  ON ENTRY,

  ele                    if NULL, start with leftmost element. if != 0 give next object to
                         the right.

  returns                Pointer to element ot NULL if none left.

 */
extern HTBTElement * HTBTree_next PARAMS((HTBTree* tree, HTBTElement * ele));

#endif /* HTBTREE_H */