parsifal

839
reputation
4
11
21
typedef struct BinaryTreeNode
{
   elementType data;
   struct BinaryTreeNode *lChild, *rChild;
} BinaryTreeNode, *BinaryTree

and a spare time Haskeller.