pNodecreat(intn);//创建双向链表voidoutput(pNode h);//打印双向链表intif_empty(pNode);//判空intlength(pNode h);//返回链表长度voidInsert(pNode h,inti,intdata);//插入voidDelete(pNode h,inti);//删除 各项功能的函数定义如下: (1)创建双链表 pNodecreat(intn)//创建链表{inti; pNode h,p...