Logo

Programming-Idioms

History of Idiom 17 > diff from v23 to v24

Edit summary for version 24 by programming-idioms.org:
[Csharp] Corrected syntax error

Version 23

2016-05-11, 17:55:53

Version 24

2016-05-16, 21:59:37

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.