Passing struct pointer to function doesn't edit it

后端 未结 0 1253
一个人的身影
一个人的身影 2020-12-15 04:19

I have this code:

typedef struct node* AVLNode;

struct node
{
    char Word[50];
    AVLNode Left;
    AVLNode Right;
};

void Insert(char* S, AVLNode T)
{
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题