Logo

Programming-Idioms

History of Idiom 9 > diff from v13 to v14

Edit summary for version 14 by :

Version 13

2015-10-29, 14:05:11

Version 14

2015-11-30, 12:37:25

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.

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.