C语言单向链表的操作(持续更新中)
struct node{ int data; struct node *next;};struct node* CreateHeadList() //头插法{ int i; struct node* head = NULL; //声明头节点 struct node* new; //声明新节点 for(i = 0;