下面code的startCount和endCount是什么
typedefstruct DListNode_struct {char *word;
unsignedlong startCount;
unsignedlong endCount;
structDListNode_struct *next;
structDListNode_struct *prev;
} DListNode;
typedefstruct DList_struct {
int size;
DListNode *head;
DListNode *tail;
} DList;
如果只看一个结构体猜不出其中的某些变量是什么意思 建议你结合使用这个结构体的代码分析
页:
[1]