不带头结点的循环单向链表

#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
相关文章
相关标签/搜索