用尾指針表示的帶頭結點單循環鏈表的創建算法以下

#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()//帶
相關文章
相關標籤/搜索