已知带头节点的单链表的节点结构体定义为:tpedef, struet LNode{Eleaype data;struct LNode *next;} LinkNode;请实现在单链表的头部插入数据元素的算法。void ListInsest(LinkNode *$L, ElemType e){