package week02;
import java.util.*;
public class 明明的随机数 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int m = sc.nextInt();
Set hashSet = new HashSet<>();
int []arr=new int [m];
for(int j = 0; j < m; j ++)
{
arr[j] = sc.nextInt();
}
for(int i = 0; i < arr.length; i++)
{
hashSet.add(arr[i]);
}
System.out.println(hashSet.size());
TreeSet treeSet = new TreeSet();
treeSet.addAll(hashSet);
}
}
相关文章
- 11-07Hash哈希(hashCode、HashSet 、HashMap)
- 11-07如何合并HashSet?
- 11-07使用HashMap或Hashset优化使用循环判断字符串中是否含有重复元素
- 11-07HashMap、hashSet、HashTable、ConcurrentHashMap总结
- 11-07HashMap、HashTable和HashSet
- 11-07HashTable、HashSet和Dictionary的区别
- 11-07HashSet LinkedHashSet TreeSet 分析
- 11-07JDK源码学习笔记——HashSet LinkedHashSet TreeSet
- 11-07Set集合系列HashSet
- 11-07ArrayList去除重复元素 利用 HashSet