單鏈表實現分帶頭節點鏈表和不帶頭節點鏈表:使用頭文件如下:struct LinkNode { void *x; &nbs
#include#includetypedef struct node{ int data;