单链表应用举例
typedef struct Node{DataType data;struct Node *next;}SLNode;void ListInitiate(SLNode **head){
单链表应用举例