不帶頭結點的循環單向鏈表

#include<stdio.h> #include<stdlib.h> struct node { int num; struct node * next; }; typedef struct node Node; typedef struct node * Link; void create_link(Link * head) { *head = NULL; } void ins
相關文章
相關標籤/搜索