只有当ppre指向的结点值和此时pcur指向的结点值不相等时,ppre才会向后移动一个位置,再将pcur指向ppre指向位置的下一个位置。 编程要求 根据提示,在右侧编辑器 Begin-End 区间补充代码,完成单链表按照值的大小插入函数的定义,具体要求如下: int ListSortInsert(LinkList &L,ElemType e,int(*compare)(ElemType, Ele...