Logo

Programming-Idioms

History of Idiom 17 > diff from v29 to v30

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

Version 29

2016-12-04, 21:20:29

Version 30

2016-12-04, 21:43:01

Idiom #17 Create a Tree data structure

The structure must be recursive. A node may have zero or more children. A node has access to children nodes, but not to its parent.

Idiom #17 Create a Tree data structure

The structure must be recursive. A node may have zero or more children. A node has access to children nodes, but not to its parent.