方式二、利用LinkList中的*L作为参数,在创建链表函数中 /*遍历仅需要头指针 寻找单链表中的第i个节点;并在第i个节点后面插入节点s*/# include<stdio.h># include<malloc.h># include<stdlib.h>typedefstructNode{intdata;structNode *pnext; }Node,*LinkList; typedefintStatus;voidcreatList(LinkList *L,in...