如下图所示的c语言的关于指针问题

2024-11-17 03:41:07
推荐回答(1个)
回答1:

main中:
BiTNode *T;
create(T);
Status Create(BiTree *T){
T=(BiTree*)malloc(....);
}