//初始化带头结点的单链表 #include#include typedef struct LNode{ int data; struct LNode *next; }LNode,*linkList; bool InitList(linkList &L) { L = (LNode *)malloc(sizeof(LNode)); if(L == NULL) return false; L->next = NULL; return true; } void test() { linkList L; if(InitList(L)) printf("true"); return; } int main(void) { test(); return 0; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)