单向链表实现 #include <stdio.h> #include <malloc.h> typedef int DATA; struct SNode { DATA data; SNode* pNext; }