主题:紧急
我定义了这样一个结构体
struct node
{struct node *rchild;
struct node *lchild;
struct node *parent;
char data;
int tag;
}*num1[100];
现在要进行函数调用
原函数的声明是
int search(struct node *num[],int k);
调用函数是
search(num1,k);
可是怎么都不对!!
哪位牛人能告诉我这是为什么啊?
struct node
{struct node *rchild;
struct node *lchild;
struct node *parent;
char data;
int tag;
}*num1[100];
现在要进行函数调用
原函数的声明是
int search(struct node *num[],int k);
调用函数是
search(num1,k);
可是怎么都不对!!
哪位牛人能告诉我这是为什么啊?