单链表实现分带头节点链表和不带头节点链表:使用头文件如下:struct LinkNode { void *x; &nbs
#include#includetypedef struct node{ int data;