Node representation of binary trees
typedef struct nodetype {
int info;
struct nodetype *left;
struct nodetype * right;
} NODE, *NODE_PTR;
Previous slide
Next slide
Back to first slide
View graphic version