Logo

Programming-Idioms

History of Idiom 17 > diff from v16 to v17

Edit summary for version 17 by :

Version 16

2015-11-30, 12:37:26

Version 17

2016-02-18, 16:57:57

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 his 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 his parent.