1. 首页
  2. 编程语言
  3. C
  4. 带头结点链表的各种操作c语言

带头结点链表的各种操作c语言

上传者: 2019-01-12 04:53:24上传 H文件 2.25KB 热度 50次
/*带头结点头文件 hlinklist.h*/ #include typedef int datatype; typedef struct link_node { datatype data; struct link_node *next; }node; /*初始化链表*/ node *init() { node *head; head=(node *)malloc(sizeof(node)); head->next=0; return head; } /*尾插法创建一个带头结点链表*/ node *creat(node *head) { node *
用户评论