摘要:
很多高级用法,比如Stream ,Compare都只针对包装类 直接int[] 到set只能使用赋值的方法 int[] nums = {0,0,1,1,1,2,2,3,3,4}; Set<Integer> set = new HashSet<>(); for (int i = 0; i < nums 阅读全文
摘要:
一般set用于去重的判断,类似的还有HashMap 以下是常见的解题思路: 新建set new HashSet<Integer>() 对要判断的数组进行遍历,如果添加失败if (!set.add(x)),说明已存在该元素,提前进行结果的返回 遍历完成后返回一个默认值 Set<Integer> set 阅读全文