JAVA如何去除数组重复元素

43次阅读
没有评论

共计 535 个字符,预计需要花费 2 分钟才能阅读完成。

可以使用 Set 集合来去除数组中的重复元素。Set 集合是不允许出现重复元素的集合,可以通过将数组转换为 Set 集合,然后再将 Set 集合转换回数组的方式去除数组中的重复元素。以下是一个示例代码:

import java.util.*;
public class RemoveDuplicates {public static void main(String[] args) {int[] array = {1, 2, 3, 2, 4, 3, 5, 6, 4};
int[] result = removeDuplicates(array);
System.out.println("去除重复元素后的数组:");
for (int num : result) {System.out.print(num + " ");
}
}
public static int[] removeDuplicates(int[] array) {Set set = new HashSet();
for (int num : array) {set.add(num);
}
int[] result = new int[set.size()];
int i = 0;
for (int num : set) {result[i++] = num;
}
return result;
}
}

输出结果为:1 2 3 4 5 6

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计535字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)