The two posts of writing is not the same, the same two meanings?
PtrToNode is a kind of type, why typedef and PtrToNode to add struct?
CodePudding user response:
Feel good strange, with so many tyoedef, feeling he can make it complicated,,,,,,,
My habit is such a definition:
typedef struct BiTNode {
char data;
Struct lchild BiTNode * and * rchild;
} BiTNode, * BiTree;//storage structure of binary tree node
CodePudding user response: