在顺序表中删除与指定值相等的所有元素bool ListDeleteItems(SqList &L, ElemType item);示例:原顺序表:(长度为7)6 7 2 6 6 5 6删除指定值6后:(长度为3)7 2 5要求:时间复杂度为O(n),空间复杂度为O(1)。