Does anyone have any good examples of building a tree data structure both iteratively and recursively in C Language (!C++)? Also to traverse through the tree and cover every node..
I'm likely to use this struct:
typedef struct treeNode *treeLink;
struct treeNode {
Item item;
treeLink left, right;
};