Logo

Programming-Idioms

History of Idiom 9 > diff from v5 to v6

Edit summary for version 6 by :

Version 5

2015-08-24, 01:48:22

Version 6

2015-08-24, 07:16:07

Idiom #9 Create a Binary Tree data structure

The structure must be recursive because left child and right child are binary trees too. A node has access to children nodes, but not to his parent.

Idiom #9 Create a Binary Tree data structure

The structure must be recursive because left child and right child are binary trees too. A node has access to children nodes, but not to its parent.