在实现三叉树时,我被这一步难住了:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef struct tnode *Tptr;
typedef struct node
{
char splitchar;
Tptr lokid,eqkid,hikid;
}Tnode;
int research(Tptr p,char *s)
{
if (!p) return 0;
if (*s<p->
}
int main(){
return 0;
}
当我将鼠标图标移到 附近时p
,它会显示红色并显示错误:
pointer to incomplete class type is not allowed
我的问题是什么是不完整的课程?请帮助我,谢谢。