考虑操作removeAll
,它从列表中删除所有出现的元素。该方法返回删除的元素数。
public int removeAll(E element)
实现此操作: 1. 基于数组的未排序列表
我们不能使用集合。
我现在开始的:
public int removeAll(T element) {
int duplicatesRemoved = 0;
for (int i = 0; i <= array.length - 1; i++) {
for (int j = i + 1; j <= array.length - 1; j++) {
if (array[i] == array[j]) {
}
}
我无法完成其余的工作,请问有什么帮助吗?