相关代码 |
|
/*****************************************************/ /* 建立一个空的带头结点的单链表 */ /* 文件名hlnkinit.c,函数名init_hlink_list() */ /*****************************************************/ node *init_hlink_list() { node *head; head=(node*)malloc(sizeof(node)); head->next=NULL; return head; }