Logo

Programming-Idioms

History of Idiom 9 > diff from v23 to v24

Edit summary for version 24 by programming-idioms.org:
Linked to idiom #17 [Create a Tree data structure]

Version 23

2016-11-29, 09:00:55

Version 24

2016-12-04, 21:43:00

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.