共计 687 个字符,预计需要花费 2 分钟才能阅读完成。
可以使用 HashSet 来实现数组去重,同时不改变原数组的位置。具体步骤如下:
- 遍历原数组,将元素逐个添加到 HashSet 中,HashSet 会自动去重元素。
- 创建一个新的数组,长度为 HashSet 的大小。
- 遍历 HashSet,将元素依次添加到新数组中。
- 返回新数组作为结果。
以下是一个示例代码:
import java.util.HashSet;
public class ArrayDuplicateRemoval {public static void main(String[] args) {int[] array = {1, 2, 3, 2, 1, 5, 6, 5};
int[] result = removeDuplicates(array);
// 输出去重后的数组
for (int i = 0; i < result.length; i++) {System.out.print(result[i] + " ");
}
}
public static int[] removeDuplicates(int[] array) {HashSet set = new HashSet();
// 遍历原数组,将元素逐个添加到 HashSet 中
for (int i = 0; i < array.length; i++) {set.add(array[i]);
}
// 创建一个新的数组,长度为 HashSet 的大小
int[] result = new int[set.size()];
int index = 0;
// 遍历 HashSet,将元素依次添加到新数组中
for (int num : set) {result[index++] = num;
}
return result;
}
}
输出结果:
1 2 3 5 6
丸趣 TV 网 – 提供最优质的资源集合!
正文完