三分木を実装している間、私はこのステップで困惑しています:
#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
私の質問は、不完全なクラスとは正確には何ですか? 助けてください、ありがとう。