Tree v1.1
----------

1 - tree_init()
2 - tree_clear()
3 - tree_insert()
4 - tree_delete()
5 - tree_find_node()
6 - tree_get_node_count()
7 - tree_proces()
M - MENU
P - Tree_Print()
E - END
Your choice: Your choice: 7
Tree is NOT initialized!

Your choice: Your choice: 1
Tree initialized successfuly.

Your choice: Your choice: 7
Process:
1 - preorder
2 - inorder
3 - postorder
Your choice1


Your choice: Your choice: 3
Insert data to a node:
Please, enter a name: Enter age, weight and height (separated by Enter):
myMalloc: allocating 296 bytes, memory allocated 296 bytes

Your choice: Your choice: 3
Insert data to a node:
Please, enter a name: Enter age, weight and height (separated by Enter):
myMalloc: allocating 296 bytes, memory allocated 592 bytes

Your choice: Your choice: 3
Insert data to a node:
Please, enter a name: Enter age, weight and height (separated by Enter):
myMalloc: allocating 296 bytes, memory allocated 888 bytes

Your choice: Your choice: 6
The number of nodes in a tree: 3

Your choice: Your choice: 7
Process:
1 - preorder
2 - inorder
3 - postorder
Your choice2

Name=Anna, age=30.0, weight=60.0, height=160.0
 | L -> NULL | R -> NULL
Name=Franta, age=50.0, weight=80.0, height=180.0
 | L -> Name=Anna, age=30.0, weight=60.0, height=160.0
 | R -> Name=Xaver, age=60.0, weight=70.0, height=175.0

Name=Xaver, age=60.0, weight=70.0, height=175.0
 | L -> NULL | R -> NULL

Your choice: Your choice: 4
Insert data to delete:
Please, enter a name: Enter age, weight and height (separated by Enter):
myFree: releasing 296 bytes, memory allocated 592 bytes

Your choice: Your choice: 7
Process:
1 - preorder
2 - inorder
3 - postorder
Your choice2

Name=Anna, age=30.0, weight=60.0, height=160.0
 | L -> NULL | R -> Name=Xaver, age=60.0, weight=70.0, height=175.0

Name=Xaver, age=60.0, weight=70.0, height=175.0
 | L -> NULL | R -> NULL

Your choice: Your choice: 5
Insert data to search:
Please, enter a name: Enter age, weight and height (separated by Enter):
Data were not found in a tree.

Your choice: Your choice: 5
Insert data to search:
Please, enter a name: Enter age, weight and height (separated by Enter):
Data were found in a tree.

Your choice: Your choice: 2
myFree: releasing 296 bytes, memory allocated 296 bytes
myFree: releasing 296 bytes, memory allocated 0 bytes
The nodes from a tree were deleted.

Your choice: Your choice: E
END.

