parsifal

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

and a spare time Haskeller.