Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of parsifal

parsifal

parsifal has asked 8 questions and find answers to 0 problems.

Stats

40
EtPoint
0
Vote count
8
questions
0
answers

About

typedef struct BinaryTreeNode
{
   elementType data;
   struct BinaryTreeNode *lChild, *rChild;
} BinaryTreeNode, *BinaryTree

and a spare time Haskeller.