共计 436 个字符,预计需要花费 2 分钟才能阅读完成。
可以使用 HashSet 来去除重复数据。HashSet 是一个不重复元素的集合,使用它可以快速去除重复数据。
下面是一个示例代码:
import java.util.Arrays;
import java.util.HashSet;
public class RemoveDuplicates {public static void main(String[] args) {int[] nums = {1, 2, 3, 2, 4, 1, 5, 3};
HashSet<Integer> set = new HashSet<>();
for (int num : nums) {set.add(num);
}
int[] result = new int[set.size()];
int i = 0;
for (int num : set) {result[i++] = num;
}
System.out.println(Arrays.toString(result));
}
}
运行以上代码,输出结果为:[1, 2, 3, 4, 5],即成功去除了重复数据。
丸趣 TV 网 – 提供最优质的资源集合!
正文完