用尾指针表示的带头结点单循环链表的创建算法以下

#include<stdio.h> #include<stdlib.h> #define LEN sizeof(struct node) typedef int datatype; typedef struct node {         datatype data;     struct node *next; }linklist;node linklist *hcirl_creat()//带
相关文章
相关标签/搜索