Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of parsifal

parsifal

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

Stats

45
EtPoint
0
Vote count
9
questions
0
answers

About

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

and a spare time Haskeller.